Fix the following coccicheck warning: arch/x86/include/asm/uv/uv.h:45:53-54: WARNING: return of 0/1 in function 'is_early_uv_system' with return type bool
Reported-by: Hulk Robot <hul...@huawei.com> Signed-off-by: Samuel Zou <zou_...@huawei.com> --- arch/x86/include/asm/uv/uv.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/x86/include/asm/uv/uv.h b/arch/x86/include/asm/uv/uv.h index 91e088a..334da92 100644 --- a/arch/x86/include/asm/uv/uv.h +++ b/arch/x86/include/asm/uv/uv.h @@ -42,7 +42,7 @@ extern const struct cpumask *uv_flush_tlb_others(const struct cpumask *cpumask, #else /* X86_UV */ static inline enum uv_system_type get_uv_system_type(void) { return UV_NONE; } -static inline bool is_early_uv_system(void) { return 0; } +static inline bool is_early_uv_system(void) { return false; } static inline int is_uv_system(void) { return 0; } static inline int is_uv_hubbed(int uv) { return 0; } static inline int is_uv_hubless(int uv) { return 0; } -- 2.6.2