diff options
author | Ingo Molnar <mingo@elte.hu> | 2009-01-28 00:50:47 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-01-28 17:20:20 -0500 |
commit | e2d40b1878bd13ca1028ddd299c48e4821ac3535 (patch) | |
tree | 6b2a69b3323346137e7146537edd1118dcce7862 /arch/x86/mach-generic/es7000.c | |
parent | 2e867b17cc02e1799f18126af0ddd7b63dd8f6f4 (diff) |
x86, apic: clean up ->vector_allocation_domain()
- separate the namespace
- remove macros
- move the default vector-allocation-domain to mach-generic
- fix whitespace damage
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.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/mach-generic/es7000.c b/arch/x86/mach-generic/es7000.c index 8e9eeecf7e24..bc1f21cd6a4d 100644 --- a/arch/x86/mach-generic/es7000.c +++ b/arch/x86/mach-generic/es7000.c | |||
@@ -86,7 +86,7 @@ static int __init es7000_acpi_madt_oem_check(char *oem_id, char *oem_table_id) | |||
86 | } | 86 | } |
87 | #endif | 87 | #endif |
88 | 88 | ||
89 | static void vector_allocation_domain(int cpu, cpumask_t *retmask) | 89 | static void es7000_vector_allocation_domain(int cpu, cpumask_t *retmask) |
90 | { | 90 | { |
91 | /* Careful. Some cpus do not strictly honor the set of cpus | 91 | /* Careful. Some cpus do not strictly honor the set of cpus |
92 | * specified in the interrupt destination when using lowest | 92 | * specified in the interrupt destination when using lowest |
@@ -116,7 +116,7 @@ struct genapic apic_es7000 = { | |||
116 | .check_apicid_used = es7000_check_apicid_used, | 116 | .check_apicid_used = es7000_check_apicid_used, |
117 | .check_apicid_present = es7000_check_apicid_present, | 117 | .check_apicid_present = es7000_check_apicid_present, |
118 | 118 | ||
119 | .vector_allocation_domain = vector_allocation_domain, | 119 | .vector_allocation_domain = es7000_vector_allocation_domain, |
120 | .init_apic_ldr = init_apic_ldr, | 120 | .init_apic_ldr = init_apic_ldr, |
121 | 121 | ||
122 | .ioapic_phys_id_map = ioapic_phys_id_map, | 122 | .ioapic_phys_id_map = ioapic_phys_id_map, |