commit | fdb551a4c59945f868b8855e5baf161c9f1c0518 | [log] [tgz] |
---|---|---|
author | Ralf Baechle <ralf@linux-mips.org> | Thu May 19 12:08:04 2005 +0000 |
committer | Ralf Baechle <ralf@linux-mips.org> | Sat Oct 29 19:31:15 2005 +0100 |
tree | 6038d4a05ba6ac87008ce83d1295d742919a9c71 | |
parent | 629c83f89b943421cd03257e7028a073baa9ca5a [diff] [blame] |
Bugs are now a configuration option. Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
diff --git a/include/asm-mips/bug.h b/include/asm-mips/bug.h index 3f594b4..758712f 100644 --- a/include/asm-mips/bug.h +++ b/include/asm-mips/bug.h
@@ -1,6 +1,10 @@ #ifndef __ASM_BUG_H #define __ASM_BUG_H +#include <linux/config.h> + +#ifdef CONFIG_BUG + #include <asm/break.h> #ifdef CONFIG_BUG @@ -14,3 +18,5 @@ #include <asm-generic/bug.h> #endif + +#endif /* __ASM_BUG_H */