diff options
author | Cyrill Gorcunov <gorcunov@gmail.com> | 2008-08-18 18:45:53 +0200 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-08-19 02:07:14 +0200 |
commit | 36c9d6742897fa414f51c4e9d0f20ab4e6bf942c (patch) | |
tree | 4e671ed13edabe691f8f48a582141f3c086afd11 /arch/x86/kernel/apic_32.c | |
parent | x86: apic - unify lapic_shutdown (diff) | |
download | linux-36c9d6742897fa414f51c4e9d0f20ab4e6bf942c.tar.xz linux-36c9d6742897fa414f51c4e9d0f20ab4e6bf942c.zip |
x86: apic - unify connect_bsp_APIC
Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kernel/apic_32.c')
-rw-r--r-- | arch/x86/kernel/apic_32.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/x86/kernel/apic_32.c b/arch/x86/kernel/apic_32.c index d4efe86adc72..6d230e9d0a7d 100644 --- a/arch/x86/kernel/apic_32.c +++ b/arch/x86/kernel/apic_32.c @@ -1387,6 +1387,7 @@ void smp_error_interrupt(struct pt_regs *regs) */ void __init connect_bsp_APIC(void) { +#ifdef CONFIG_X86_32 if (pic_mode) { /* * Do not trust the local APIC being empty at bootup. @@ -1401,6 +1402,7 @@ void __init connect_bsp_APIC(void) outb(0x70, 0x22); outb(0x01, 0x23); } +#endif enable_apic_mode(); } |