mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-16 18:36:46 +07:00
bb8985586b
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk> Signed-off-by: H. Peter Anvin <hpa@zytor.com>
15 lines
240 B
C
15 lines
240 B
C
#ifndef __ASM_NUMAQ_APICDEF_H
|
|
#define __ASM_NUMAQ_APICDEF_H
|
|
|
|
|
|
#define APIC_ID_MASK (0xF<<24)
|
|
|
|
static inline unsigned get_apic_id(unsigned long x)
|
|
{
|
|
return (((x)>>24)&0x0F);
|
|
}
|
|
|
|
#define GET_APIC_ID(x) get_apic_id(x)
|
|
|
|
#endif
|