Sign in
googlers
/
maze
/
linux
/
309bade002e9226781c2d7a015340d0089e399b5
/
.
/
include
/
asm-parisc
/
bug.h
blob: 695588da41f8a73bb31d3fbeb7c686bf0fdfa751 [
file
] [
log
] [
blame
]
#ifndef
_PARISC_BUG_H
#define
_PARISC_BUG_H
#ifdef
CONFIG_BUG
#define
HAVE_ARCH_BUG
#define
BUG
()
do
{
\
printk
(
"kernel BUG at %s:%d!\n"
,
__FILE__
,
__LINE__
);
\
dump_stack
();
\
panic
(
"BUG!"
);
\
}
while
(
0
)
#endif
#include
<asm-generic/bug.h>
#endif