aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel/apic_64.c
diff options
context:
space:
mode:
authorYinghai Lu <yhlu.kernel@gmail.com>2008-07-11 21:44:16 -0400
committerIngo Molnar <mingo@elte.hu>2008-07-12 02:45:14 -0400
commit4c9961d56ec20c27ec5d02e49fd7427748312741 (patch)
treee3a0fd508aae031dcd06705a2ce77f7dd0a68c11 /arch/x86/kernel/apic_64.c
parent4696ca5bfd2697f5686f96d59cf0b6de14869b4e (diff)
x86: make read_apic_id return final apicid
also remove GET_APIC_ID when read_apic_id is used. need to apply after [PATCH] x86: mach_apicdef.h need to include before smp.h Signed-off-by: Yinghai Lu <yhlu.kernel@gmail.com> Cc: Suresh Siddha <suresh.b.siddha@intel.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kernel/apic_64.c')
-rw-r--r--arch/x86/kernel/apic_64.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/x86/kernel/apic_64.c b/arch/x86/kernel/apic_64.c
index dd0501039f09..c75f58a66d8e 100644
--- a/arch/x86/kernel/apic_64.c
+++ b/arch/x86/kernel/apic_64.c
@@ -1060,7 +1060,7 @@ void __init early_init_lapic_mapping(void)
1060 * Fetch the APIC ID of the BSP in case we have a 1060 * Fetch the APIC ID of the BSP in case we have a
1061 * default configuration (or the MP table is broken). 1061 * default configuration (or the MP table is broken).
1062 */ 1062 */
1063 boot_cpu_physical_apicid = GET_APIC_ID(read_apic_id()); 1063 boot_cpu_physical_apicid = read_apic_id();
1064} 1064}
1065 1065
1066/** 1066/**
@@ -1069,7 +1069,7 @@ void __init early_init_lapic_mapping(void)
1069void __init init_apic_mappings(void) 1069void __init init_apic_mappings(void)
1070{ 1070{
1071 if (x2apic) { 1071 if (x2apic) {
1072 boot_cpu_physical_apicid = GET_APIC_ID(read_apic_id()); 1072 boot_cpu_physical_apicid = read_apic_id();
1073 return; 1073 return;
1074 } 1074 }
1075 1075
@@ -1092,7 +1092,7 @@ void __init init_apic_mappings(void)
1092 * Fetch the APIC ID of the BSP in case we have a 1092 * Fetch the APIC ID of the BSP in case we have a
1093 * default configuration (or the MP table is broken). 1093 * default configuration (or the MP table is broken).
1094 */ 1094 */
1095 boot_cpu_physical_apicid = GET_APIC_ID(read_apic_id()); 1095 boot_cpu_physical_apicid = read_apic_id();
1096} 1096}
1097 1097
1098/* 1098/*