diff options
author | Pekka Enberg <penberg@cs.helsinki.fi> | 2009-04-09 04:52:27 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-04-10 08:35:57 -0400 |
commit | ab19c25abd14db28d7454f00805ea59f22ed6057 (patch) | |
tree | c6cea8626268f2e861d52281857ac9e886d22f70 /arch/x86/kernel/irqinit_32.c | |
parent | 778838600eb6973bdb6fd11e7f91b43cea4d6f45 (diff) |
x86: unify apic_intr_init() in irqinit_{32,64}.c
Impact: cleanup
Reviewed-by Cyrill Gorcunov <gorcunov@openvz.org>
Signed-off-by: Pekka Enberg <penberg@cs.helsinki.fi>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kernel/irqinit_32.c')
-rw-r--r-- | arch/x86/kernel/irqinit_32.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/arch/x86/kernel/irqinit_32.c b/arch/x86/kernel/irqinit_32.c index 72ce94268d31..f3be5e974275 100644 --- a/arch/x86/kernel/irqinit_32.c +++ b/arch/x86/kernel/irqinit_32.c | |||
@@ -180,7 +180,12 @@ static void __init apic_intr_init(void) | |||
180 | { | 180 | { |
181 | smp_intr_init(); | 181 | smp_intr_init(); |
182 | 182 | ||
183 | #ifdef CONFIG_X86_LOCAL_APIC | 183 | #ifdef CONFIG_X86_64 |
184 | alloc_intr_gate(THERMAL_APIC_VECTOR, thermal_interrupt); | ||
185 | alloc_intr_gate(THRESHOLD_APIC_VECTOR, threshold_interrupt); | ||
186 | #endif | ||
187 | |||
188 | #if defined(CONFIG_X86_64) || defined(CONFIG_X86_LOCAL_APIC) | ||
184 | /* self generated IPI for local APIC timer */ | 189 | /* self generated IPI for local APIC timer */ |
185 | alloc_intr_gate(LOCAL_TIMER_VECTOR, apic_timer_interrupt); | 190 | alloc_intr_gate(LOCAL_TIMER_VECTOR, apic_timer_interrupt); |
186 | 191 | ||
@@ -192,10 +197,12 @@ static void __init apic_intr_init(void) | |||
192 | alloc_intr_gate(ERROR_APIC_VECTOR, error_interrupt); | 197 | alloc_intr_gate(ERROR_APIC_VECTOR, error_interrupt); |
193 | #endif | 198 | #endif |
194 | 199 | ||
200 | #ifdef CONFIG_X86_32 | ||
195 | #if defined(CONFIG_X86_LOCAL_APIC) && defined(CONFIG_X86_MCE_P4THERMAL) | 201 | #if defined(CONFIG_X86_LOCAL_APIC) && defined(CONFIG_X86_MCE_P4THERMAL) |
196 | /* thermal monitor LVT interrupt */ | 202 | /* thermal monitor LVT interrupt */ |
197 | alloc_intr_gate(THERMAL_APIC_VECTOR, thermal_interrupt); | 203 | alloc_intr_gate(THERMAL_APIC_VECTOR, thermal_interrupt); |
198 | #endif | 204 | #endif |
205 | #endif | ||
199 | } | 206 | } |
200 | 207 | ||
201 | #ifdef CONFIG_X86_32 | 208 | #ifdef CONFIG_X86_32 |