projects
/
linux-2.6
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
[ARM] 3539/1: ixp23xx: fix __arch_ixp23xx_is_coherent() for A1 stepping
[linux-2.6]
/
include
/
asm-mips
/
bug.h
1
#ifndef __ASM_BUG_H
2
#define __ASM_BUG_H
3
4
#include <linux/config.h>
5
6
#ifdef CONFIG_BUG
7
8
#include <asm/break.h>
9
10
#define BUG() \
11
do { \
12
__asm__ __volatile__("break %0" : : "i" (BRK_BUG)); \
13
} while (0)
14
15
#define HAVE_ARCH_BUG
16
17
#endif
18
19
#include <asm-generic/bug.h>
20
21
#endif /* __ASM_BUG_H */