diff options
author | Alexey Starikovskiy <astarikovskiy@suse.de> | 2008-05-20 00:29:59 +0400 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2008-05-25 12:01:26 +0200 |
commit | 136ef671df04dc157afa0d4b96c7bd23ba072c9c (patch) | |
tree | ffe1d8e41e13204c684604541c7a5886238eb38c /arch/x86/kernel/setup_32.c | |
parent | 8732fc4b237fca3bd3cb0ec87ca8fb90271b0baf (diff) |
x86: allow MPPARSE to be deselected in SMP configs
Diffstat (limited to 'arch/x86/kernel/setup_32.c')
-rw-r--r-- | arch/x86/kernel/setup_32.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/setup_32.c b/arch/x86/kernel/setup_32.c index e1173aecf69a..c04e8c91daf7 100644 --- a/arch/x86/kernel/setup_32.c +++ b/arch/x86/kernel/setup_32.c @@ -814,7 +814,7 @@ void __init setup_arch(char **cmdline_p) "CONFIG_X86_GENERICARCH or CONFIG_X86_BIGSMP.\n"); #endif #endif -#ifdef CONFIG_X86_LOCAL_APIC +#if defined(CONFIG_X86_MPPARSE) || defined(CONFIG_X86_VISWS) if (smp_found_config) get_smp_config(); #endif |