aboutsummaryrefslogtreecommitdiff
path: root/include/asm-parisc/bug.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/asm-parisc/bug.h')
-rw-r--r--include/asm-parisc/bug.h12
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 00000000000..e72f6e2b4b9
--- /dev/null
+++ b/include/asm-parisc/bug.h
@@ -0,0 +1,12 @@
+#ifndef _PARISC_BUG_H
+#define _PARISC_BUG_H
+
+#define HAVE_ARCH_BUG
+#define BUG() do { \
+ printk("kernel BUG at %s:%d!\n", __FILE__, __LINE__); \
+ dump_stack(); \
+ panic("BUG!"); \
+} while (0)
+
+#include <asm-generic/bug.h>
+#endif