Commit 85429999 authored by James Bottomley's avatar James Bottomley

move smp_thermal_interrupt from i8259.c to hook in smpboot.c

parent cad751cb
...@@ -354,11 +354,6 @@ void __init init_IRQ(void) ...@@ -354,11 +354,6 @@ void __init init_IRQ(void)
} }
/* thermal monitor LVT interrupt */
#ifdef CONFIG_X86_MCE_P4THERMAL
set_intr_gate(THERMAL_APIC_VECTOR, smp_thermal_interrupt);
#endif
/* /*
* Set the clock to HZ Hz, we already have a valid * Set the clock to HZ Hz, we already have a valid
* vector now: * vector now:
......
...@@ -1275,4 +1275,9 @@ void __init smp_intr_init() ...@@ -1275,4 +1275,9 @@ void __init smp_intr_init()
/* IPI for generic function call */ /* IPI for generic function call */
set_intr_gate(CALL_FUNCTION_VECTOR, call_function_interrupt); set_intr_gate(CALL_FUNCTION_VECTOR, call_function_interrupt);
/* thermal monitor LVT interrupt */
#ifdef CONFIG_X86_MCE_P4THERMAL
set_intr_gate(THERMAL_APIC_VECTOR, smp_thermal_interrupt);
#endif
} }
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment