From e2a90797e83c9a53f575805c87331718edc8534c Mon Sep 17 00:00:00 2001 From: Todd Kjos Date: Tue, 6 Jul 2021 11:23:59 -0700 Subject: [PATCH] ANDROID: Fix kernelci warnings for indentation in smp.c MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fix warnings reported by kernelci due to incorrect indentatio: kernel/smp.c:982:3: warning: this ‘if’ clause does not guard Fixes: f0b280c3957a ("ANDROID: cpuidle: Update cpuidle_uninstall_idle_handler() to wakeup all online CPUs") Signed-off-by: Todd Kjos Change-Id: Ide771342558de321154696f9fe1272750a773853 --- kernel/smp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/smp.c b/kernel/smp.c index 6677e077e4be..d7033091bdfb 100644 --- a/kernel/smp.c +++ b/kernel/smp.c @@ -982,7 +982,7 @@ void wake_up_all_online_idle_cpus(void) if (cpu == smp_processor_id()) continue; - wake_up_if_idle(cpu); + wake_up_if_idle(cpu); } preempt_enable(); }