diff options
Diffstat (limited to 'include/asm-parisc/bug.h')
-rw-r--r-- | include/asm-parisc/bug.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/include/asm-parisc/bug.h b/include/asm-parisc/bug.h new file mode 100644 index 000000000000..e72f6e2b4b9f --- /dev/null +++ b/include/asm-parisc/bug.h | |||
@@ -0,0 +1,12 @@ | |||
1 | #ifndef _PARISC_BUG_H | ||
2 | #define _PARISC_BUG_H | ||
3 | |||
4 | #define HAVE_ARCH_BUG | ||
5 | #define BUG() do { \ | ||
6 | printk("kernel BUG at %s:%d!\n", __FILE__, __LINE__); \ | ||
7 | dump_stack(); \ | ||
8 | panic("BUG!"); \ | ||
9 | } while (0) | ||
10 | |||
11 | #include <asm-generic/bug.h> | ||
12 | #endif | ||