mirror of
https://github.com/AetherDroid/android_kernel_samsung_on5xelte.git
synced 2025-09-08 01:08:03 -04:00
16 lines
305 B
C
16 lines
305 B
C
#ifndef _CPUMAP_H
|
|
#define _CPUMAP_H
|
|
|
|
#ifdef CONFIG_SMP
|
|
void cpu_map_rebuild(void);
|
|
int map_to_cpu(unsigned int index);
|
|
#define cpu_map_init() cpu_map_rebuild()
|
|
#else
|
|
#define cpu_map_init() do {} while (0)
|
|
static inline int map_to_cpu(unsigned int index)
|
|
{
|
|
return raw_smp_processor_id();
|
|
}
|
|
#endif
|
|
|
|
#endif
|