aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel/io_apic_32.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/x86/kernel/io_apic_32.c')
-rw-r--r--arch/x86/kernel/io_apic_32.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/kernel/io_apic_32.c b/arch/x86/kernel/io_apic_32.c
index 76f11c3e3906..0d204237489e 100644
--- a/arch/x86/kernel/io_apic_32.c
+++ b/arch/x86/kernel/io_apic_32.c
@@ -2078,7 +2078,7 @@ static struct irq_chip lapic_chip __read_mostly = {
2078 .eoi = ack_apic, 2078 .eoi = ack_apic,
2079}; 2079};
2080 2080
2081static void setup_nmi (void) 2081static void __init setup_nmi(void)
2082{ 2082{
2083 /* 2083 /*
2084 * Dirty trick to enable the NMI watchdog ... 2084 * Dirty trick to enable the NMI watchdog ...
@@ -2091,7 +2091,7 @@ static void setup_nmi (void)
2091 */ 2091 */
2092 apic_printk(APIC_VERBOSE, KERN_INFO "activating NMI Watchdog ..."); 2092 apic_printk(APIC_VERBOSE, KERN_INFO "activating NMI Watchdog ...");
2093 2093
2094 on_each_cpu(enable_NMI_through_LVT0, NULL, 1, 1); 2094 enable_NMI_through_LVT0();
2095 2095
2096 apic_printk(APIC_VERBOSE, " done.\n"); 2096 apic_printk(APIC_VERBOSE, " done.\n");
2097} 2097}