|
@@ -137,6 +137,9 @@ typedef volatile unsigned char vu_char;
|
|
#define BUG_ON(condition) do { if (unlikely((condition)!=0)) BUG(); } while(0)
|
|
#define BUG_ON(condition) do { if (unlikely((condition)!=0)) BUG(); } while(0)
|
|
#endif /* BUG */
|
|
#endif /* BUG */
|
|
|
|
|
|
|
|
+/* Force a compilation error if condition is true */
|
|
|
|
+#define BUILD_BUG_ON(condition) ((void)sizeof(char[1 - 2*!!(condition)]))
|
|
|
|
+
|
|
typedef void (interrupt_handler_t)(void *);
|
|
typedef void (interrupt_handler_t)(void *);
|
|
|
|
|
|
#include <asm/u-boot.h> /* boot information for Linux kernel */
|
|
#include <asm/u-boot.h> /* boot information for Linux kernel */
|