OSDN Git Service

Move x86_64 idle notifiers to generic
[android-x86/kernel.git] / arch / x86 / include / asm / idle.h
1 #ifndef _ASM_X86_IDLE_H
2 #define _ASM_X86_IDLE_H
3
4 #ifdef CONFIG_X86_64
5 void enter_idle(void);
6 void exit_idle(void);
7 #else /* !CONFIG_X86_64 */
8 static inline void enter_idle(void) { }
9 static inline void exit_idle(void) { }
10 static inline void __exit_idle(void) { }
11 #endif /* CONFIG_X86_64 */
12
13 void amd_e400_remove_cpu(int cpu);
14
15 #endif /* _ASM_X86_IDLE_H */