CVSROOT: /home/cvs
Module name: linux
Changes by: ralf@ftp.linux-mips.org 05/09/14 18:49:27
Modified files:
arch/mips/kernel: genex.S
Log message:
When will you people learn that #if CONFIG_* doesn't fly, *grmbl* ...
diff -urN linux/arch/mips/kernel/genex.S linux/arch/mips/kernel/genex.S
--- linux/arch/mips/kernel/genex.S 2005/08/17 17:44:09 1.15
+++ linux/arch/mips/kernel/genex.S 2005/09/14 17:49:27 1.16
@@ -276,10 +276,10 @@
start with an n and gas will believe \n is ok ... */
.macro __BUILD_verbose nexception
LONG_L a1, PT_EPC(sp)
-#if CONFIG_32BIT
+#ifdef CONFIG_32BIT
PRINT("Got \nexception at %08lx\012")
#endif
-#if CONFIG_64BIT
+#ifdef CONFIG_64BIT
PRINT("Got \nexception at %016lx\012")
#endif
.endm
|