diff options
author | Max Kellermann <max.kellermann@ionos.com> | 2024-02-22 12:47:27 +0100 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2024-02-22 17:51:14 +0100 |
commit | 266e95786452d97f42dcb9a881bba223584b9648 (patch) | |
tree | 3cf0ad64f887e7c364d735b5a84ae1d33540f997 /kernel/cpu.c | |
parent | b57b4126dd3bb69db876ae7b271307ab7e0458b9 (diff) |
cpu: Remove stray semicolon
This syntax error was introduced by commit da92df490eea ("cpu: Mark
cpu_possible_mask as __ro_after_init").
Fixes: da92df490eea ("cpu: Mark cpu_possible_mask as __ro_after_init")
Signed-off-by: Max Kellermann <max.kellermann@ionos.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Link: https://lore.kernel.org/r/20240222114727.1144588-1-max.kellermann@ionos.com
Diffstat (limited to 'kernel/cpu.c')
-rw-r--r-- | kernel/cpu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/cpu.c b/kernel/cpu.c index 7b36b3a4e336..cc4a8068747c 100644 --- a/kernel/cpu.c +++ b/kernel/cpu.c @@ -3106,7 +3106,7 @@ const DECLARE_BITMAP(cpu_all_bits, NR_CPUS) = CPU_BITS_ALL; EXPORT_SYMBOL(cpu_all_bits); #ifdef CONFIG_INIT_ALL_POSSIBLE -struct cpumask __cpu_possible_mask __ro_after_init; +struct cpumask __cpu_possible_mask __ro_after_init = {CPU_BITS_ALL}; #else struct cpumask __cpu_possible_mask __ro_after_init; |