2005-04-16 22:20:36 +00:00
|
|
|
#ifndef __ASM_BUG_H
|
|
|
|
#define __ASM_BUG_H
|
|
|
|
|
2005-05-19 12:08:04 +00:00
|
|
|
#include <linux/config.h>
|
|
|
|
|
|
|
|
#ifdef CONFIG_BUG
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
#include <asm/break.h>
|
|
|
|
|
|
|
|
#define BUG() \
|
|
|
|
do { \
|
|
|
|
__asm__ __volatile__("break %0" : : "i" (BRK_BUG)); \
|
|
|
|
} while (0)
|
2005-10-29 18:32:38 +00:00
|
|
|
|
|
|
|
#define HAVE_ARCH_BUG
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
#endif
|
2005-05-19 12:08:04 +00:00
|
|
|
|
2005-05-19 17:05:09 +00:00
|
|
|
#include <asm-generic/bug.h>
|
|
|
|
|
2005-05-19 12:08:04 +00:00
|
|
|
#endif /* __ASM_BUG_H */
|