[U-Boot] [PATCH 3/6] common.h: remove error()

Masahiro Yamada yamada.masahiro at socionext.com
Wed Sep 13 11:45:03 UTC 2017


This macro has prevented us from using compiletime_error/assert
in <linux/compiler.h>.

Now we can remove it, then we will be able to import more BUILD_BUG
macros from Linux.

Signed-off-by: Masahiro Yamada <yamada.masahiro at socionext.com>
---

 include/common.h | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/include/common.h b/include/common.h
index ae3b876..e66b8ff 100644
--- a/include/common.h
+++ b/include/common.h
@@ -89,11 +89,6 @@ void __assert_fail(const char *assertion, const char *file, unsigned line,
 	({ if (!(x) && _DEBUG) \
 		__assert_fail(#x, __FILE__, __LINE__, __func__); })
 
-#define error(fmt, args...) do {					\
-		printf("ERROR: " pr_fmt(fmt) "\nat %s:%d/%s()\n",	\
-			##args, __FILE__, __LINE__, __func__);		\
-} while (0)
-
 #ifndef BUG
 #define BUG() do { \
 	printf("BUG: failure at %s:%d/%s()!\n", __FILE__, __LINE__, __FUNCTION__); \
-- 
2.7.4



More information about the U-Boot mailing list