diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2005-05-19 08:08:04 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2005-10-29 14:31:15 -0400 |
commit | fdb551a4c59945f868b8855e5baf161c9f1c0518 (patch) | |
tree | 6038d4a05ba6ac87008ce83d1295d742919a9c71 | |
parent | 629c83f89b943421cd03257e7028a073baa9ca5a (diff) |
Bugs are now a configuration option.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
-rw-r--r-- | include/asm-mips/bug.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/asm-mips/bug.h b/include/asm-mips/bug.h index 3f594b440abc..758712f1c88f 100644 --- a/include/asm-mips/bug.h +++ b/include/asm-mips/bug.h | |||
@@ -1,6 +1,10 @@ | |||
1 | #ifndef __ASM_BUG_H | 1 | #ifndef __ASM_BUG_H |
2 | #define __ASM_BUG_H | 2 | #define __ASM_BUG_H |
3 | 3 | ||
4 | #include <linux/config.h> | ||
5 | |||
6 | #ifdef CONFIG_BUG | ||
7 | |||
4 | #include <asm/break.h> | 8 | #include <asm/break.h> |
5 | 9 | ||
6 | #ifdef CONFIG_BUG | 10 | #ifdef CONFIG_BUG |
@@ -14,3 +18,5 @@ do { \ | |||
14 | #include <asm-generic/bug.h> | 18 | #include <asm-generic/bug.h> |
15 | 19 | ||
16 | #endif | 20 | #endif |
21 | |||
22 | #endif /* __ASM_BUG_H */ | ||