diff options
-rw-r--r-- | include/asm-x86/mach-default/smpboot_hooks.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/asm-x86/mach-default/smpboot_hooks.h b/include/asm-x86/mach-default/smpboot_hooks.h index b63c52182006..56d001b9dce4 100644 --- a/include/asm-x86/mach-default/smpboot_hooks.h +++ b/include/asm-x86/mach-default/smpboot_hooks.h | |||
@@ -3,7 +3,9 @@ | |||
3 | 3 | ||
4 | static inline void smpboot_clear_io_apic_irqs(void) | 4 | static inline void smpboot_clear_io_apic_irqs(void) |
5 | { | 5 | { |
6 | #ifdef CONFIG_X86_IO_APIC | ||
6 | io_apic_irqs = 0; | 7 | io_apic_irqs = 0; |
8 | #endif | ||
7 | } | 9 | } |
8 | 10 | ||
9 | static inline void smpboot_setup_warm_reset_vector(unsigned long start_eip) | 11 | static inline void smpboot_setup_warm_reset_vector(unsigned long start_eip) |
@@ -35,6 +37,7 @@ static inline void smpboot_restore_warm_reset_vector(void) | |||
35 | 37 | ||
36 | static inline void __init smpboot_setup_io_apic(void) | 38 | static inline void __init smpboot_setup_io_apic(void) |
37 | { | 39 | { |
40 | #ifdef CONFIG_X86_IO_APIC | ||
38 | /* | 41 | /* |
39 | * Here we can be sure that there is an IO-APIC in the system. Let's | 42 | * Here we can be sure that there is an IO-APIC in the system. Let's |
40 | * go and set it up: | 43 | * go and set it up: |
@@ -45,9 +48,12 @@ static inline void __init smpboot_setup_io_apic(void) | |||
45 | nr_ioapics = 0; | 48 | nr_ioapics = 0; |
46 | localise_nmi_watchdog(); | 49 | localise_nmi_watchdog(); |
47 | } | 50 | } |
51 | #endif | ||
48 | } | 52 | } |
49 | 53 | ||
50 | static inline void smpboot_clear_io_apic(void) | 54 | static inline void smpboot_clear_io_apic(void) |
51 | { | 55 | { |
56 | #ifdef CONFIG_X86_IO_APIC | ||
52 | nr_ioapics = 0; | 57 | nr_ioapics = 0; |
58 | #endif | ||
53 | } | 59 | } |