aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel/genx2apic_phys.c
diff options
context:
space:
mode:
authorIngo Molnar <mingo@elte.hu>2009-01-28 08:08:38 -0500
committerIngo Molnar <mingo@elte.hu>2009-01-28 17:20:29 -0500
commitca6c8ed4646f8ccaa4f7db618bf69b8b8fb49767 (patch)
tree0d321219bba34dab2a43bad628042440cc493ed2 /arch/x86/kernel/genx2apic_phys.c
parent9c7642470ecf03d8b4946a2addc8fe631b8426dd (diff)
x86, apic: refactor ->get_apic_id() & GET_APIC_ID()
- spread out the namespace on a per driver basis - get rid of macro wrappers - small cleanups Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kernel/genx2apic_phys.c')
-rw-r--r--arch/x86/kernel/genx2apic_phys.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/kernel/genx2apic_phys.c b/arch/x86/kernel/genx2apic_phys.c
index 2cb6f49e4c50..80cba49cfd89 100644
--- a/arch/x86/kernel/genx2apic_phys.c
+++ b/arch/x86/kernel/genx2apic_phys.c
@@ -140,7 +140,7 @@ static unsigned int x2apic_cpu_mask_to_apicid_and(const struct cpumask *cpumask,
140 return BAD_APICID; 140 return BAD_APICID;
141} 141}
142 142
143static unsigned int get_apic_id(unsigned long x) 143static unsigned int x2apic_phys_get_apic_id(unsigned long x)
144{ 144{
145 unsigned int id; 145 unsigned int id;
146 146
@@ -203,7 +203,7 @@ struct genapic apic_x2apic_phys = {
203 .phys_pkg_id = x2apic_phys_pkg_id, 203 .phys_pkg_id = x2apic_phys_pkg_id,
204 .mps_oem_check = NULL, 204 .mps_oem_check = NULL,
205 205
206 .get_apic_id = get_apic_id, 206 .get_apic_id = x2apic_phys_get_apic_id,
207 .set_apic_id = set_apic_id, 207 .set_apic_id = set_apic_id,
208 .apic_id_mask = 0xFFFFFFFFu, 208 .apic_id_mask = 0xFFFFFFFFu,
209 209