X-Git-Url: http://pilppa.org/gitweb/gitweb.cgi?a=blobdiff_plain;f=include%2Fasm-arm%2Fbug.h;h=7b62351f097d2f49ff6fcfb7ea0e0c43e11d012f;hb=0e5f11aa80bd01d048f374cc64ef0819ad7d86f2;hp=5ab8216f5204aa7f204cd5b34fffb228428ff618;hpb=badc48e6605ddeeb2484afae5993c859494decaa;p=linux-2.6-omap-h63xx.git diff --git a/include/asm-arm/bug.h b/include/asm-arm/bug.h index 5ab8216f520..7b62351f097 100644 --- a/include/asm-arm/bug.h +++ b/include/asm-arm/bug.h @@ -1,15 +1,13 @@ #ifndef _ASMARM_BUG_H #define _ASMARM_BUG_H -#include -#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