/spare/repo/netdev-2.6 branch 'sis190'
[sfrench/cifs-2.6.git] / include / asm-arm / bug.h
1 #ifndef _ASMARM_BUG_H
2 #define _ASMARM_BUG_H
3
4 #include <linux/config.h>
5
6 #ifdef CONFIG_BUG
7 #ifdef CONFIG_DEBUG_BUGVERBOSE
8 extern void __bug(const char *file, int line, void *data) __attribute__((noreturn));
9
10 /* give file/line information */
11 #define BUG()           __bug(__FILE__, __LINE__, NULL)
12
13 #else
14
15 /* this just causes an oops */
16 #define BUG()           (*(int *)0 = 0)
17
18 #endif
19
20 #define HAVE_ARCH_BUG
21 #endif
22
23 #include <asm-generic/bug.h>
24
25 #endif