From aba2d18cee96acc8b372b4ef27fa193cc2dc331c Mon Sep 17 00:00:00 2001 From: prashantpaddune Date: Tue, 7 Apr 2020 18:00:22 +0530 Subject: [PATCH] arm64: smp: fix compile errors --- arch/arm64/kernel/smp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm64/kernel/smp.c b/arch/arm64/kernel/smp.c index e4eb6869b..80614f6c2 100644 --- a/arch/arm64/kernel/smp.c +++ b/arch/arm64/kernel/smp.c @@ -890,7 +890,7 @@ void smp_send_stop(void) while (num_other_online_cpus() && timeout--) udelay(1); - if (num_other_online_cpus()) + if (num_other_online_cpus()) { pr_warning("SMP: failed to stop secondary CPUs\n"); } else { pr_info("SMP: completed to stop secondary CPUS\n");