repo.or.cz
/
linux-2.6.9-moxart.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
MOXA linux-2.6.x / linux-2.6.9-uc0 from sdlinux-moxaart.tgz
[linux-2.6.9-moxart.git]
/
include
/
asm-s390
/
bug.h
blob
2b8d6d4dffcfdc6a696cd41877a94ba0af262dca
1
#ifndef _S390_BUG_H
2
#define _S390_BUG_H
3
4
#include <linux/kernel.h>
5
6
#define BUG() do { \
7
printk(
"kernel BUG at %s:%d!
\n
"
, __FILE__, __LINE__); \
8
__asm__ __volatile__(
".long 0"
); \
9
} while (0)
10
11
#define HAVE_ARCH_BUG
12
#include <asm-generic/bug.h>
13
14
#endif