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