Gitiles
Code Review
Sign In
LeafOS
/
LeafOS-Devices
/
android_kernel_samsung_gta4xl
/
beb6617d994161a6b12c5f69afc6fb154f085447
/
.
/
include
/
asm-parisc
/
bug.h
blob: e72f6e2b4b9fc6c6d75e1b219dd61bfea55ba74d [
file
] [
log
] [
blame
]
#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