summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRussell King (Oracle) <rmk+kernel@armlinux.org.uk>2023-11-03 15:17:12 +0000
committerRussell King (Oracle) <rmk+kernel@armlinux.org.uk>2024-01-08 12:37:51 +0000
commit487bb6a8e9615ef7696920b2968ea173f5975e38 (patch)
treeccb347e6f6193ab1d85d7fdf8f632a1681c55754
parent1a4288f5630fdf2019d6ed5fa7c3c5500135afc2 (diff)
riscv: convert to use arch_cpu_is_hotpluggable()
Convert riscv to use the arch_cpu_is_hotpluggable() helper rather than arch_register_cpu(). Acked-by: Palmer Dabbelt <palmer@rivosinc.com> Reviewed-by: Gavin Shan <gshan@redhat.com> Reviewed-by: Samuel Holland <samuel.holland@sifive.com> Tested-by: Samuel Holland <samuel.holland@sifive.com> # On HiFive Unmatched Reviewed-by: Jonathan Cameron <Jonathan.Cameron@huawei.com> Signed-off-by: Russell King (Oracle) <rmk+kernel@armlinux.org.uk>
-rw-r--r--arch/riscv/kernel/setup.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/arch/riscv/kernel/setup.c b/arch/riscv/kernel/setup.c
index b3a0aa2b78d5..7493fafbe4cb 100644
--- a/arch/riscv/kernel/setup.c
+++ b/arch/riscv/kernel/setup.c
@@ -298,12 +298,9 @@ void __init setup_arch(char **cmdline_p)
riscv_user_isa_enable();
}
-int arch_register_cpu(int cpu)
+bool arch_cpu_is_hotpluggable(int cpu)
{
- struct cpu *c = &per_cpu(cpu_devices, cpu);
-
- c->hotpluggable = cpu_has_hotplug(cpu);
- return register_cpu(c, cpu);
+ return cpu_has_hotplug(cpu);
}
void free_initmem(void)