Fix the following coccicheck warnings: ./arch/x86/events/intel/lbr.c:917:9-10: WARNING: return of 0/1 in function 'get_lbr_predicted' with return type bool.
./arch/x86/events/intel/lbr.c:909:9-10: WARNING: return of 0/1 in function 'get_lbr_mispred' with return type bool. Reported-by: Abaci Robot <[email protected]> Signed-off-by: Jiapeng Chong <[email protected]> --- arch/x86/events/intel/lbr.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/x86/events/intel/lbr.c b/arch/x86/events/intel/lbr.c index 21890da..edf8247 100644 --- a/arch/x86/events/intel/lbr.c +++ b/arch/x86/events/intel/lbr.c @@ -906,7 +906,7 @@ static __always_inline int get_lbr_br_type(u64 info) static __always_inline bool get_lbr_mispred(u64 info) { if (static_cpu_has(X86_FEATURE_ARCH_LBR) && !x86_pmu.lbr_mispred) - return 0; + return false; return !!(info & LBR_INFO_MISPRED); } @@ -914,7 +914,7 @@ static __always_inline bool get_lbr_mispred(u64 info) static __always_inline bool get_lbr_predicted(u64 info) { if (static_cpu_has(X86_FEATURE_ARCH_LBR) && !x86_pmu.lbr_mispred) - return 0; + return false; return !(info & LBR_INFO_MISPRED); } -- 1.8.3.1

