arm64: kernel: remove ARM64_CPU_SUSPEND config option
[deliverable/linux.git] / arch / arm64 / include / asm / cpuidle.h
CommitLineData
d64f84f6
LP
1#ifndef __ASM_CPUIDLE_H
2#define __ASM_CPUIDLE_H
3
4#ifdef CONFIG_CPU_IDLE
5extern int cpu_init_idle(unsigned int cpu);
af3cfdbf 6extern int cpu_suspend(unsigned long arg);
d64f84f6
LP
7#else
8static inline int cpu_init_idle(unsigned int cpu)
9{
10 return -EOPNOTSUPP;
11}
af3cfdbf
LP
12
13static inline int cpu_suspend(unsigned long arg)
14{
15 return -EOPNOTSUPP;
16}
d64f84f6
LP
17#endif
18
19#endif
This page took 0.058953 seconds and 5 git commands to generate.