diff options
author | Ingo Molnar <mingo@elte.hu> | 2009-01-27 23:01:41 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-01-28 17:20:17 -0500 |
commit | f6f52baf2613dd319e9ba3f3319bf1f1c442e4b3 (patch) | |
tree | 1eb8f814939501c10f3f18af86f9c5a5d25c7310 /arch/x86/mach-generic/summit.c | |
parent | fe402e1f2b67a63f1e53ab2a316fc20f7ca4ec91 (diff) |
x86: clean up esr_disable() methods
Impact: cleanup
Most subarchitectures want to disable the APIC ESR (Error Status Register),
because they generally have hardware hacks that wrap standard CPUs into
a bigger system and hence the APIC bus is quite non-standard and weirdnesses
(lockups) have been seen with ESR reporting.
Remove the esr_disable macros and put the desired flag into each
subarchitecture's genapic template directly.
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/mach-generic/summit.c')
-rw-r--r-- | arch/x86/mach-generic/summit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/mach-generic/summit.c b/arch/x86/mach-generic/summit.c index e6b956a08484..cd5ef115a4ee 100644 --- a/arch/x86/mach-generic/summit.c +++ b/arch/x86/mach-generic/summit.c | |||
@@ -49,7 +49,7 @@ struct genapic apic_summit = { | |||
49 | .irq_dest_mode = 1, | 49 | .irq_dest_mode = 1, |
50 | 50 | ||
51 | .target_cpus = summit_target_cpus, | 51 | .target_cpus = summit_target_cpus, |
52 | .ESR_DISABLE = esr_disable, | 52 | .ESR_DISABLE = 1, |
53 | .apic_destination_logical = APIC_DEST_LOGICAL, | 53 | .apic_destination_logical = APIC_DEST_LOGICAL, |
54 | .check_apicid_used = check_apicid_used, | 54 | .check_apicid_used = check_apicid_used, |
55 | .check_apicid_present = check_apicid_present, | 55 | .check_apicid_present = check_apicid_present, |