2005-04-17 00:20:36 +02:00
|
|
|
#ifndef _ASMARM_BUG_H
|
|
|
|
#define _ASMARM_BUG_H
|
|
|
|
|
|
|
|
|
2005-05-01 17:59:01 +02:00
|
|
|
#ifdef CONFIG_BUG
|
2005-04-17 00:20:36 +02:00
|
|
|
#ifdef CONFIG_DEBUG_BUGVERBOSE
|
2006-12-07 19:09:20 +01:00
|
|
|
extern void __bug(const char *file, int line) __attribute__((noreturn));
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
/* give file/line information */
|
2006-12-07 19:09:20 +01:00
|
|
|
#define BUG() __bug(__FILE__, __LINE__)
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
/* this just causes an oops */
|
|
|
|
#define BUG() (*(int *)0 = 0)
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define HAVE_ARCH_BUG
|
2005-05-01 17:59:01 +02:00
|
|
|
#endif
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
#include <asm-generic/bug.h>
|
|
|
|
|
|
|
|
#endif
|