X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=include%2Fasm-arm%2Fbug.h;h=7b62351f097d2f49ff6fcfb7ea0e0c43e11d012f;hb=4a78942d0b7655d120f28f2160bc4fa40c6da9ff;hp=5ab8216f5204aa7f204cd5b34fffb228428ff618;hpb=1465887cfe79889273e3fd3aaf862e7ec3ee244f;p=linux-2.6 diff --git a/include/asm-arm/bug.h b/include/asm-arm/bug.h index 5ab8216f52..7b62351f09 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