]> pilppa.org Git - linux-2.6-omap-h63xx.git/blobdiff - include/asm-arm/bug.h
[ARM] 4369/1: AT91: Fix circular dependency in header files
[linux-2.6-omap-h63xx.git] / include / asm-arm / bug.h
index 7fb02138f585985dd810407a82a8643bb3874d9f..7b62351f097d2f49ff6fcfb7ea0e0c43e11d012f 100644 (file)
@@ -1,14 +1,13 @@
 #ifndef _ASMARM_BUG_H
 #define _ASMARM_BUG_H
 
-#include <linux/config.h>
 
 #ifdef CONFIG_BUG
 #ifdef CONFIG_DEBUG_BUGVERBOSE
-extern void __bug(const char *file, int line, void *data) __attribute__((noreturn));
+extern void __bug(const char *file, int line) __attribute__((noreturn));
 
 /* give file/line information */
-#define BUG()          __bug(__FILE__, __LINE__, NULL)
+#define BUG()          __bug(__FILE__, __LINE__)
 
 #else