Gitiles
Code Review
Sign In
review.shift-gmbh.com
/
SHIFTPHONES
/
kernel
/
common
/
9a6b4b392de4569e83ecfd6f382f3369f250b52f
/
.
/
arch
/
arm64
/
include
/
asm
/
cpuidle.h
blob: b52a9932e2b1face66440bd754acdcb1e568a15c [
file
] [
log
] [
blame
]
#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