repo.or.cz
/
linux-2.6
/
linux-acpi-2.6
/
ibm-acpi-2.6.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[PATCH] I2C: Add support for the LPC47M15x and LPC47M192 chips to smsc47m1
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git]
/
include
/
asm-parisc
/
bug.h
blob
695588da41f8a73bb31d3fbeb7c686bf0fdfa751
1
#ifndef _PARISC_BUG_H
2
#define _PARISC_BUG_H
3
4
#ifdef CONFIG_BUG
5
#define HAVE_ARCH_BUG
6
#define BUG() do { \
7
printk(
"kernel BUG at %s:%d!
\n
"
, __FILE__, __LINE__); \
8
dump_stack(); \
9
panic(
"BUG!"
); \
10
} while (0)
11
#endif
12
13
#include <asm-generic/bug.h>
14
#endif