M7350/kernel/arch/arm64/include/asm/cpuidle.h

14 lines
212 B
C
Raw Normal View History

2024-09-09 08:57:42 +00:00
#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