aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIngo Molnar2009-01-27 20:43:47 -0600
committerIngo Molnar2009-01-28 16:20:12 -0600
commit7ed248daa56156f2fd7175f90b62fc6397b0c7b7 (patch)
tree7b03f5fa08ee6cec1c7af4e8b0327a4ac8f882cd /arch/x86/mach-generic/es7000.c
parent306db03b0d71bf9c94155c0c4771a79fc70b4b27 (diff)
downloadkernel-common-7ed248daa56156f2fd7175f90b62fc6397b0c7b7.tar.gz
kernel-common-7ed248daa56156f2fd7175f90b62fc6397b0c7b7.tar.xz
kernel-common-7ed248daa56156f2fd7175f90b62fc6397b0c7b7.zip
x86: clean up apic->apic_id_registered() methods
Impact: cleanup x86 subarchitectures each defined a "apic_id_registered()" method, which could be an inline function depending on which subarch we build for, and which was also the name of a genapic field. Untangle this namespace spaghetti by giving each of the instances a separate name. Also remove wrapper macro obfuscation. Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/mach-generic/es7000.c')
-rw-r--r--arch/x86/mach-generic/es7000.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/mach-generic/es7000.c b/arch/x86/mach-generic/es7000.c
index 23fe6f1c969..d68ca0bce67 100644
--- a/arch/x86/mach-generic/es7000.c
+++ b/arch/x86/mach-generic/es7000.c
@@ -105,7 +105,7 @@ struct genapic apic_es7000 = {
105 .name = "es7000", 105 .name = "es7000",
106 .probe = probe_es7000, 106 .probe = probe_es7000,
107 .acpi_madt_oem_check = es7000_acpi_madt_oem_check, 107 .acpi_madt_oem_check = es7000_acpi_madt_oem_check,
108 .apic_id_registered = apic_id_registered, 108 .apic_id_registered = es7000_apic_id_registered,
109 109
110 .int_delivery_mode = INT_DELIVERY_MODE, 110 .int_delivery_mode = INT_DELIVERY_MODE,
111 .int_dest_mode = INT_DEST_MODE, 111 .int_dest_mode = INT_DEST_MODE,