repo.or.cz
/
linux-2.6
/
suspend2-2.6.18.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge branch 'merge' of git://git.kernel.org/pub/scm/linux/kernel/git/paulus/powerpc
[linux-2.6/suspend2-2.6.18.git]
/
include
/
asm-mips
/
bug.h
blob
7b4739dc8f3f28387ac71a26e11089dddbc1cff5
1
#ifndef __ASM_BUG_H
2
#define __ASM_BUG_H
3
4
5
#ifdef CONFIG_BUG
6
7
#include <asm/break.h>
8
9
#define BUG() \
10
do { \
11
__asm__ __volatile__(
"break %0"
: :
"i"
(BRK_BUG)); \
12
} while (0)
13
14
#define HAVE_ARCH_BUG
15
16
#endif
17
18
#include <asm-generic/bug.h>
19
20
#endif
/* __ASM_BUG_H */