cpuidle.h 212 B

12345678910111213
  1. #ifndef __ASM_CPUIDLE_H
  2. #define __ASM_CPUIDLE_H
  3. #ifdef CONFIG_CPU_IDLE
  4. extern int cpu_init_idle(unsigned int cpu);
  5. #else
  6. static inline int cpu_init_idle(unsigned int cpu)
  7. {
  8. return -EOPNOTSUPP;
  9. }
  10. #endif
  11. #endif