Commit 7f3de1ad authored by Jisheng Zhang's avatar Jisheng Zhang Committed by Palmer Dabbelt

riscv: remove cpu_stop()

Except arch_cpu_idle_dead(), no users of this function. So remove
cpu_stop() and fold its code into arch_cpu_idle_dead().
Signed-off-by: default avatarJisheng Zhang <jszhang@kernel.org>
Signed-off-by: default avatarPalmer Dabbelt <palmer@rivosinc.com>
parent decf89f8
...@@ -63,8 +63,6 @@ asmlinkage void smp_callin(void); ...@@ -63,8 +63,6 @@ asmlinkage void smp_callin(void);
#if defined CONFIG_HOTPLUG_CPU #if defined CONFIG_HOTPLUG_CPU
int __cpu_disable(void); int __cpu_disable(void);
void __cpu_die(unsigned int cpu); void __cpu_die(unsigned int cpu);
void cpu_stop(void);
#else
#endif /* CONFIG_HOTPLUG_CPU */ #endif /* CONFIG_HOTPLUG_CPU */
#else #else
......
...@@ -14,12 +14,6 @@ ...@@ -14,12 +14,6 @@
#include <asm/cpu_ops.h> #include <asm/cpu_ops.h>
#include <asm/sbi.h> #include <asm/sbi.h>
void cpu_stop(void);
void arch_cpu_idle_dead(void)
{
cpu_stop();
}
bool cpu_has_hotplug(unsigned int cpu) bool cpu_has_hotplug(unsigned int cpu)
{ {
if (cpu_ops[cpu]->cpu_stop) if (cpu_ops[cpu]->cpu_stop)
...@@ -75,7 +69,7 @@ void __cpu_die(unsigned int cpu) ...@@ -75,7 +69,7 @@ void __cpu_die(unsigned int cpu)
/* /*
* Called from the idle thread for the CPU which has been shutdown. * Called from the idle thread for the CPU which has been shutdown.
*/ */
void cpu_stop(void) void arch_cpu_idle_dead(void)
{ {
idle_task_exit(); idle_task_exit();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment