Commit 092cfbc6 authored by Russell King (Oracle)'s avatar Russell King (Oracle) Committed by Greg Kroah-Hartman

arm64: convert to arch_cpu_is_hotpluggable()

Convert arm64 to use the arch_cpu_is_hotpluggable() helper rather than
arch_register_cpu().
Reviewed-by: default avatarShaoqin Huang <shahuang@redhat.com>
Reviewed-by: default avatarGavin Shan <gshan@redhat.com>
Signed-off-by: default avatar"Russell King (Oracle)" <rmk+kernel@armlinux.org.uk>
Reviewed-by: default avatarJonathan Cameron <Jonathan.Cameron@huawei.com>
Reviewed-by: default avatarThomas Gleixner <tglx@linutronix.de>
Link: https://lore.kernel.org/r/E1r5R3g-00Cszg-PP@rmk-PC.armlinux.org.ukSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent d127db1a
...@@ -402,13 +402,9 @@ static inline bool cpu_can_disable(unsigned int cpu) ...@@ -402,13 +402,9 @@ static inline bool cpu_can_disable(unsigned int cpu)
return false; return false;
} }
int arch_register_cpu(int num) bool arch_cpu_is_hotpluggable(int num)
{ {
struct cpu *cpu = &per_cpu(cpu_devices, num); return cpu_can_disable(num);
cpu->hotpluggable = cpu_can_disable(num);
return register_cpu(cpu, num);
} }
static void dump_kernel_offset(void) static void dump_kernel_offset(void)
......
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