aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-x86/mach-default/mach_apicdef.h
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 /include/asm-x86/mach-default/mach_apicdef.h
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 'include/asm-x86/mach-default/mach_apicdef.h')
-rw-r--r--include/asm-x86/mach-default/mach_apicdef.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/asm-x86/mach-default/mach_apicdef.h b/include/asm-x86/mach-default/mach_apicdef.h
index 453b58a67e29..3e1be6c99b35 100644
--- a/include/asm-x86/mach-default/mach_apicdef.h
+++ b/include/asm-x86/mach-default/mach_apicdef.h
@@ -5,9 +5,8 @@
5 5
6#ifdef CONFIG_X86_64 6#ifdef CONFIG_X86_64
7#define APIC_ID_MASK (0xFFu<<24) 7#define APIC_ID_MASK (0xFFu<<24)
8#define GET_APIC_ID(x) (x) 8#define GET_APIC_ID(x) (((x)>>24) & 0xFFu)
9#define SET_APIC_ID(x) (((x)<<24)) 9#define SET_APIC_ID(x) (((x)<<24))
10#define GET_XAPIC_ID(x) (((x) >> 24) & 0xFFu)
11#else 10#else
12#define APIC_ID_MASK (0xF<<24) 11#define APIC_ID_MASK (0xF<<24)
13static inline unsigned get_apic_id(unsigned long x) 12static inline unsigned get_apic_id(unsigned long x)