[U-Boot] [PATCH 3/3] compiler.h: remove duplicated uninitialized_var
Jeroen Hofstee
jeroen at myspectrum.nl
Wed Sep 17 20:33:48 CEST 2014
Since clang has a different definition for uninitialized_var
it will complain that it is redefined in include/compiler.h.
Since these are already defined in linux/compiler.h just remove
this instance.
Cc: Masahiro Yamada <yamada.m at jp.panasonic.com>
Cc: Tom Rini <trini at ti.com>
Signed-off-by: Jeroen Hofstee <jeroen at myspectrum.nl>
---
This is only used in ubifs related code and MAKEALL for
arm is fine (besides the 5 boards with build issues)
---
include/compiler.h | 3 ---
1 file changed, 3 deletions(-)
diff --git a/include/compiler.h b/include/compiler.h
index 9afc11b..1451916 100644
--- a/include/compiler.h
+++ b/include/compiler.h
@@ -129,9 +129,6 @@ typedef unsigned long int uintptr_t;
#endif /* USE_HOSTCC */
-/* compiler options */
-#define uninitialized_var(x) x = x
-
#define likely(x) __builtin_expect(!!(x), 1)
#define unlikely(x) __builtin_expect(!!(x), 0)
--
2.1.0
More information about the U-Boot
mailing list