summaryrefslogtreecommitdiffstats
path: root/arch/x86
diff options
context:
space:
mode:
authorAndi Kleen <andi@firstfloor.org>2009-02-12 13:39:35 +0100
committerH. Peter Anvin <hpa@linux.intel.com>2009-02-17 15:24:34 -0800
commit07db1c140eb233971341396e492cc73d4280e698 (patch)
tree52fc67a4724ca6cbfde88b2e8a64746479da6d29 /arch/x86
parent380851bc6b1b4107c61dfa2997f9095dcf779336 (diff)
downloadop-kernel-dev-07db1c140eb233971341396e492cc73d4280e698.zip
op-kernel-dev-07db1c140eb233971341396e492cc73d4280e698.tar.gz
x86, mce: fix ifdef for 64bit thermal apic vector clear on shutdown
Impact: Bugfix The ifdef for the apic clear on shutdown for the 64bit intel thermal vector was incorrect and never triggered. Fix that. Signed-off-by: Andi Kleen <ak@linux.intel.com> Acked-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'arch/x86')
-rw-r--r--arch/x86/kernel/apic.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/apic.c b/arch/x86/kernel/apic.c
index 115449f..570f36e 100644
--- a/arch/x86/kernel/apic.c
+++ b/arch/x86/kernel/apic.c
@@ -862,7 +862,7 @@ void clear_local_APIC(void)
}
/* lets not touch this if we didn't frob it */
-#if defined(CONFIG_X86_MCE_P4THERMAL) || defined(X86_MCE_INTEL)
+#if defined(CONFIG_X86_MCE_P4THERMAL) || defined(CONFIG_X86_MCE_INTEL)
if (maxlvt >= 5) {
v = apic_read(APIC_LVTTHMR);
apic_write(APIC_LVTTHMR, v | APIC_LVT_MASKED);
OpenPOWER on IntegriCloud