STM32: USB: remove duplicated macros
authorarighi <arighi@38d2e660-2303-0410-9eaa-f027e97ec537>
Thu, 30 Sep 2010 14:15:18 +0000 (14:15 +0000)
committerarighi <arighi@38d2e660-2303-0410-9eaa-f027e97ec537>
Thu, 30 Sep 2010 14:15:18 +0000 (14:15 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@4388 38d2e660-2303-0410-9eaa-f027e97ec537

bertos/cpu/cortex-m3/drv/usb_stm32.c

index 924f86d2095e22204576cdfe051d569835402d1f..a1a50b3bea4fb094d9c69c6b78ed129c6dabf767 100644 (file)
 
 #include "usb_stm32.h"
 
-/* XXX: consider to move this to cfg/compiler.h */
-#define ALIGNED(x)     __attribute__ ((__aligned__(x)))
-
 /* XXX: consider to move this to cfg/macros.h */
-#define ALIGN_UP(value, align) (((value) & ((align) - 1)) ? \
-                               (((value) + ((align) - 1)) & ~((align) - 1)) : \
-                               (value))
 
 /* XXX: redefine this to make it usable within C expression */
 #define _MIN(a,b)      (((a) < (b)) ? (a) : (b))