ANDROID: Fix kernelci warnings for indentation in smp.c

Fix warnings reported by kernelci due to incorrect indentatio:

    kernel/smp.c:982:3: warning: this ‘if’ clause does not guard

Fixes: f0b280c395 ("ANDROID: cpuidle: Update cpuidle_uninstall_idle_handler()
to wakeup all online CPUs")
Signed-off-by: Todd Kjos <tkjos@google.com>
Change-Id: Ide771342558de321154696f9fe1272750a773853
This commit is contained in:
Todd Kjos 2021-07-06 11:23:59 -07:00
parent bac33eaebf
commit e2a90797e8

View File

@ -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();
}