[PATCH] x86: traps.c replace #if CONFIG_X86_32 with #ifdefCONFIG_X86_32

From: Jaswinder Singh
Date: Tue Dec 23 2008 - 11:22:29 EST


Impact: cleanup, avoid warning in X86_64

Fixes this warning in X86_64:
CC arch/x86/kernel/traps.o
arch/x86/kernel/traps.c:695:5: warning: "CONFIG_X86_32" is not defined

Signed-off-by: Jaswinder Singh <jaswinder@xxxxxxxxxxxxx>
---
arch/x86/kernel/traps.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/x86/kernel/traps.c b/arch/x86/kernel/traps.c
index d327b53..2c00412 100644
--- a/arch/x86/kernel/traps.c
+++ b/arch/x86/kernel/traps.c
@@ -692,7 +692,7 @@ void math_error(void __user *ip)

err = swd & ~cwd & 0x3f;

-#if CONFIG_X86_32
+#ifdef CONFIG_X86_32
if (!err)
return;
#endif
--
1.5.5.1



--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/