Gitiles
Code Review
Sign In
LeafOS
/
LeafOS-Devices
/
android_kernel_samsung_gta4xl
/
9537a48ed4b9e4b738943d6da0a0fd4278adf905
/
.
/
arch
/
x86
/
include
/
asm
/
bigsmp
/
apicdef.h
blob: 392c3f5ef2fe0ad4d3e48e485390f4cb62a7bf83 [
file
] [
log
] [
blame
]
#ifndef
__ASM_MACH_APICDEF_H
#define
__ASM_MACH_APICDEF_H
#define
APIC_ID_MASK
(
0xFF
<<
24
)
static
inline
unsigned
get_apic_id
(
unsigned
long
x
)
{
return
(((
x
)>>
24
)&
0xFF
);
}
#define
GET_APIC_ID
(
x
)
get_apic_id
(
x
)
#endif