[PATCH] add WARN_ON and WARN support
Jean-Christophe PLAGNIOL-VILLARD
plagnioj at jcrosoft.com
Sun Aug 29 12:24:22 EDT 2010
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj at jcrosoft.com>
---
include/common.h | 25 +++++++++++++++++++++++++
1 files changed, 25 insertions(+), 0 deletions(-)
diff --git a/include/common.h b/include/common.h
index 0edc778..64f49db 100644
--- a/include/common.h
+++ b/include/common.h
@@ -56,6 +56,31 @@
} while (0)
#define BUG_ON(condition) do { if (unlikely((condition)!=0)) BUG(); } while(0)
+
+#define __WARN() do { \
+ printf("WARNING: at %s:%d/%s()!\n", __FILE__, __LINE__, __FUNCTION__); \
+} while (0)
+
+#ifndef WARN_ON
+#define WARN_ON(condition) ({ \
+ int __ret_warn_on = !!(condition); \
+ if (unlikely(__ret_warn_on)) \
+ __WARN(); \
+ unlikely(__ret_warn_on); \
+})
+#endif
+
+#ifndef WARN
+#define WARN(condition, format...) ({ \
+ int __ret_warn_on = !!(condition); \
+ if (unlikely(__ret_warn_on)) \
+ __WARN(); \
+ puts("WARNING: "); \
+ printf(format); \
+ unlikely(__ret_warn_on); \
+})
+#endif
+
typedef void (interrupt_handler_t)(void *);
#include <asm/barebox.h> /* boot information for Linux kernel */
--
1.7.1
More information about the barebox
mailing list