diff options
author | Jaswinder Singh <jaswinder@infradead.org> | 2008-12-23 11:20:11 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-12-25 05:49:55 -0500 |
commit | 1fcccb008be12ea823aaa392758e1e41fb82de9a (patch) | |
tree | f4ad51ce4929f44917971cfeab38ba3c5afbb08d | |
parent | adf77bac052bb5bf0722b2ce2af9fefc5b2d2a71 (diff) |
x86: traps.c replace #if CONFIG_X86_32 with #ifdef CONFIG_X86_32
Impact: cleanup, avoid warning on X86_64
Fixes this warning on 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@infradead.org>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
-rw-r--r-- | 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 c320c29255c2..f37cee75ab58 100644 --- a/arch/x86/kernel/traps.c +++ b/arch/x86/kernel/traps.c | |||
@@ -691,7 +691,7 @@ void math_error(void __user *ip) | |||
691 | 691 | ||
692 | err = swd & ~cwd & 0x3f; | 692 | err = swd & ~cwd & 0x3f; |
693 | 693 | ||
694 | #if CONFIG_X86_32 | 694 | #ifdef CONFIG_X86_32 |
695 | if (!err) | 695 | if (!err) |
696 | return; | 696 | return; |
697 | #endif | 697 | #endif |