idle.h 355 B

123456789101112131415
  1. #ifndef _ASM_X86_IDLE_H
  2. #define _ASM_X86_IDLE_H
  3. #ifdef CONFIG_X86_64
  4. void enter_idle(void);
  5. void exit_idle(void);
  6. #else /* !CONFIG_X86_64 */
  7. static inline void enter_idle(void) { }
  8. static inline void exit_idle(void) { }
  9. static inline void __exit_idle(void) { }
  10. #endif /* CONFIG_X86_64 */
  11. void amd_e400_remove_cpu(int cpu);
  12. #endif /* _ASM_X86_IDLE_H */