X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=include%2Fasm-arm%2Fbug.h;h=7b62351f097d2f49ff6fcfb7ea0e0c43e11d012f;hb=76166952bbc81dda1c8a8c14e75a2aa06f6c052c;hp=7fb02138f585985dd810407a82a8643bb3874d9f;hpb=c71bd6944eb1458b7887af1783101f5a46140c40;p=powerpc.git diff --git a/include/asm-arm/bug.h b/include/asm-arm/bug.h index 7fb02138f5..7b62351f09 100644 --- a/include/asm-arm/bug.h +++ b/include/asm-arm/bug.h @@ -1,14 +1,13 @@ #ifndef _ASMARM_BUG_H #define _ASMARM_BUG_H -#include #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