cpu: Remove stray semicolon
authorMax Kellermann <max.kellermann@ionos.com>
Thu, 22 Feb 2024 11:47:27 +0000 (12:47 +0100)
committerThomas Gleixner <tglx@linutronix.de>
Thu, 22 Feb 2024 16:51:14 +0000 (17:51 +0100)
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
kernel/cpu.c

index 7b36b3a4e33654083c06f7326cae1ea009f9394b..cc4a8068747c8dca160ff2008e16a9bde2379bf9 100644 (file)
@@ -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;