This is the patch to the file cpu.c
which fixes the following coccinelle warning:

WARNING: Comparison to bool

Signed-off-by: Wen Yang <wen.yan...@zte.com.cn>
CC: Thomas Gleixner <t...@linutronix.de>
CC: Ingo Molnar <mi...@kernel.org>
CC: Konrad Rzeszutek Wilk <konrad.w...@oracle.com>
CC: Josh Poimboeuf <jpoim...@redhat.com>
CC: "Peter Zijlstra (Intel)" <pet...@infraded.org>
CC: Peter Zijlstra <pet...@infradead.org>
CC: Mukesh Ojha <mo...@codeaurora.org>
CC: linux-kernel@vger.kernel.org
---
 kernel/cpu.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kernel/cpu.c b/kernel/cpu.c
index 91d5c38eb7e5..5bdd7e150a11 100644
--- a/kernel/cpu.c
+++ b/kernel/cpu.c
@@ -1650,7 +1650,7 @@ int __cpuhp_state_add_instance_cpuslocked(enum 
cpuhp_state state,
        lockdep_assert_cpus_held();
 
        sp = cpuhp_get_step(state);
-       if (sp->multi_instance == false)
+       if (!sp->multi_instance)
                return -EINVAL;
 
        mutex_lock(&cpuhp_state_mutex);
-- 
2.19.1

Reply via email to