瀏覽代碼

Fix weirdness in <asm/bug.h>

Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Ralf Baechle 19 年之前
父節點
當前提交
8592d4c00e
共有 1 個文件被更改,包括 2 次插入3 次删除
  1. 2 3
      include/asm-mips/bug.h

+ 2 - 3
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