diff options
author | Yinghai Lu <yhlu.kernel@gmail.com> | 2008-07-25 05:17:44 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-07-26 10:31:35 -0400 |
commit | e8c48efdb971cfb1b043076cf68be535d461a20b (patch) | |
tree | 5a76db74ca58c9055018c0ad4b3aac5c00379f05 /include/asm-x86/summit/apicdef.h | |
parent | c7e7964c9828083aeb41c2664cbf5a32acbfa9d1 (diff) |
x86: mach_summit to summit
Signed-off-by: Yinghai Lu <yhlu.kernel@gmail.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'include/asm-x86/summit/apicdef.h')
-rw-r--r-- | include/asm-x86/summit/apicdef.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/include/asm-x86/summit/apicdef.h b/include/asm-x86/summit/apicdef.h new file mode 100644 index 000000000000..f3fbca1f61c1 --- /dev/null +++ b/include/asm-x86/summit/apicdef.h | |||
@@ -0,0 +1,13 @@ | |||
1 | #ifndef __ASM_SUMMIT_APICDEF_H | ||
2 | #define __ASM_SUMMIT_APICDEF_H | ||
3 | |||
4 | #define APIC_ID_MASK (0xFF<<24) | ||
5 | |||
6 | static inline unsigned get_apic_id(unsigned long x) | ||
7 | { | ||
8 | return (x>>24)&0xFF; | ||
9 | } | ||
10 | |||
11 | #define GET_APIC_ID(x) get_apic_id(x) | ||
12 | |||
13 | #endif | ||