Skip to content

Commit

Permalink
arm64: Use reboot_cpu instead of hardconding it to 0
Browse files Browse the repository at this point in the history
Use `reboot_cpu` variable instead of hardcoding 0 as the reboot cpu in
machine_shutdown().

Signed-off-by: Qais Yousef <qais.yousef@arm.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Acked-by: Catalin Marinas <catalin.marinas@arm.com>
Cc: Will Deacon <will@kernel.org>
Link: https://lkml.kernel.org/r/20200323135110.30522-8-qais.yousef@arm.com
  • Loading branch information
Qais Yousef authored and Thomas Gleixner committed Mar 25, 2020
1 parent d66b16f commit 5efbe6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/arm64/kernel/process.c
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ void arch_cpu_idle_dead(void)
*/
void machine_shutdown(void)
{
smp_shutdown_nonboot_cpus(0);
smp_shutdown_nonboot_cpus(reboot_cpu);
}

/*
Expand Down

0 comments on commit 5efbe6a

Please sign in to comment.