Files
linux-apfs/include/asm-mips/bug.h
T

23 lines
328 B
C
Raw Normal View History

2005-04-16 15:20:36 -07: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 15:20:36 -07:00
#include <asm/break.h>
2005-05-01 08:59:01 -07:00
#ifdef CONFIG_BUG
#define HAVE_ARCH_BUG
2005-04-16 15:20:36 -07:00
#define BUG() \
do { \
__asm__ __volatile__("break %0" : : "i" (BRK_BUG)); \
} while (0)
2005-05-01 08:59:01 -07:00
#endif
2005-04-16 15:20:36 -07:00
#endif
2005-05-19 12:08:04 +00:00
#include <asm-generic/bug.h>
2005-05-19 12:08:04 +00:00
#endif /* __ASM_BUG_H */