aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/include/asm/es7000
diff options
context:
space:
mode:
authorIngo Molnar <mingo@elte.hu>2009-01-28 07:24:54 -0500
committerIngo Molnar <mingo@elte.hu>2009-01-28 17:20:27 -0500
commitcb8cc442dc7e07cb5438b357843ab4095ad73933 (patch)
treed818d1814507b2fe71f1e07c4bc108fe0c9ebb91 /arch/x86/include/asm/es7000
parentd4c9a9f3d416cfa1f5ffbe09d864d069467fe693 (diff)
x86, apic: refactor ->phys_pkg_id()
Refactor the ->phys_pkg_id() methods: - namespace separation - macro wrapper removal - open-coded calls to the methods in the generic code Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/include/asm/es7000')
-rw-r--r--arch/x86/include/asm/es7000/apic.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/include/asm/es7000/apic.h b/arch/x86/include/asm/es7000/apic.h
index d2c6c202e8bd..f183dfb4de4a 100644
--- a/arch/x86/include/asm/es7000/apic.h
+++ b/arch/x86/include/asm/es7000/apic.h
@@ -221,7 +221,7 @@ static inline unsigned int cpu_mask_to_apicid_and(const struct cpumask *inmask,
221 return apicid; 221 return apicid;
222} 222}
223 223
224static inline int phys_pkg_id(int cpuid_apic, int index_msb) 224static inline int es7000_phys_pkg_id(int cpuid_apic, int index_msb)
225{ 225{
226 return cpuid_apic >> index_msb; 226 return cpuid_apic >> index_msb;
227} 227}