diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2005-10-29 18:32:38 (GMT) |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2005-10-29 18:32:38 (GMT) |
commit | 8592d4c00eeb92495eaab6374baaad79b30866ed (patch) | |
tree | e51ac8f7f302a4da49ced54b3f2c0520ebb42b7f /include/asm-mips | |
parent | dbc571690ec4123e4e9fd6e731d8bdfa77b0d90e (diff) | |
download | linux-fsl-qoriq-8592d4c00eeb92495eaab6374baaad79b30866ed.tar.xz |
Fix weirdness in <asm/bug.h>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'include/asm-mips')
-rw-r--r-- | include/asm-mips/bug.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/include/asm-mips/bug.h b/include/asm-mips/bug.h index 8e1144f..87d49a5 100644 --- a/include/asm-mips/bug.h +++ b/include/asm-mips/bug.h @@ -7,13 +7,12 @@ #include <asm/break.h> -#ifdef CONFIG_BUG -#define HAVE_ARCH_BUG #define BUG() \ do { \ __asm__ __volatile__("break %0" : : "i" (BRK_BUG)); \ } while (0) -#endif + +#define HAVE_ARCH_BUG #endif |