mfd: dbx500-prcmu: Use true and false for bool variable
Fix the following coccicheck warning: ./include/linux/mfd/db8500-prcmu.h:723:8-9: WARNING: return of 0/1 in function 'db8500_prcmu_is_ac_wake_requested' with return type bool. Reported-by: Abaci Robot <abaci@linux.alibaba.com> Signed-off-by: Jiapeng Chong <jiapeng.chong@linux.alibaba.com> Signed-off-by: Lee Jones <lee.jones@linaro.org>
This commit is contained in:
parent
94f6f62a63
commit
1c7c148889
|
@ -720,7 +720,7 @@ static inline int db8500_prcmu_load_a9wdog(u8 id, u32 val)
|
||||||
|
|
||||||
static inline bool db8500_prcmu_is_ac_wake_requested(void)
|
static inline bool db8500_prcmu_is_ac_wake_requested(void)
|
||||||
{
|
{
|
||||||
return 0;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline int db8500_prcmu_set_arm_opp(u8 opp)
|
static inline int db8500_prcmu_set_arm_opp(u8 opp)
|
||||||
|
|
Loading…
Reference in New Issue