aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel/mpparse.c
diff options
context:
space:
mode:
authorAlexey Starikovskiy <astarikovskiy@suse.de>2008-05-22 17:54:44 -0400
committerThomas Gleixner <tglx@linutronix.de>2008-05-25 06:01:25 -0400
commitb3e2416465bc9140bfd209f247e6a789f68f0d19 (patch)
tree69abbdcfd2f9eec1d6dc2b816aa0bbfcd46e3f58 /arch/x86/kernel/mpparse.c
parentbf62f3981c7076714e3b9f5fa6989a806cad02bf (diff)
x86: Set pic_mode only if local apic code is present
Diffstat (limited to 'arch/x86/kernel/mpparse.c')
-rw-r--r--arch/x86/kernel/mpparse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/mpparse.c b/arch/x86/kernel/mpparse.c
index 59f051db236d..e61523a13ecd 100644
--- a/arch/x86/kernel/mpparse.c
+++ b/arch/x86/kernel/mpparse.c
@@ -609,7 +609,7 @@ static void __init __get_smp_config(unsigned early)
609 609
610 printk(KERN_INFO "Intel MultiProcessor Specification v1.%d\n", 610 printk(KERN_INFO "Intel MultiProcessor Specification v1.%d\n",
611 mpf->mpf_specification); 611 mpf->mpf_specification);
612#ifdef CONFIG_X86_32 612#if defined(CONFIG_X86_LOCAL_APIC) && defined(CONFIG_X86_32)
613 if (mpf->mpf_feature2 & (1 << 7)) { 613 if (mpf->mpf_feature2 & (1 << 7)) {
614 printk(KERN_INFO " IMCR and PIC compatibility mode.\n"); 614 printk(KERN_INFO " IMCR and PIC compatibility mode.\n");
615 pic_mode = 1; 615 pic_mode = 1;