tizen 2.3.1 release
[platform/kernel/u-boot.git] / include / linux / compiler-gcc.h
index 9896e54..73dcf80 100644 (file)
@@ -50,9 +50,7 @@
 #endif
 
 #define __deprecated                   __attribute__((deprecated))
-#ifndef __packed
-# define __packed                      __attribute__((packed))
-#endif
+#define __packed                       __attribute__((packed))
 #define __weak                         __attribute__((weak))
 
 /*
  * would be.
  * [...]
  */
-#ifndef __pure
-# define __pure                                __attribute__((pure))
-#endif
-#ifndef __aligned
-# define __aligned(x)                  __attribute__((aligned(x)))
-#endif
+#define __pure                         __attribute__((pure))
+#define __aligned(x)                   __attribute__((aligned(x)))
 #define __printf(a,b)                  __attribute__((format(printf,a,b)))
 #define  noinline                      __attribute__((noinline))
 #define __attribute_const__            __attribute__((__const__))