mirror of
https://github.com/AetherDroid/android_kernel_samsung_on5xelte.git
synced 2025-09-10 09:22:44 -04:00
13 lines
212 B
C
13 lines
212 B
C
#ifndef __ASM_CPUIDLE_H
|
|
#define __ASM_CPUIDLE_H
|
|
|
|
#ifdef CONFIG_CPU_IDLE
|
|
extern int cpu_init_idle(unsigned int cpu);
|
|
#else
|
|
static inline int cpu_init_idle(unsigned int cpu)
|
|
{
|
|
return -EOPNOTSUPP;
|
|
}
|
|
#endif
|
|
|
|
#endif
|