Skip to content

Commit 266e957

Browse files
MaxKellermannKAGA-KOKO
authored andcommitted
cpu: Remove stray semicolon
This syntax error was introduced by commit da92df4 ("cpu: Mark cpu_possible_mask as __ro_after_init"). Fixes: da92df4 ("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
1 parent b57b412 commit 266e957

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kernel/cpu.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3106,7 +3106,7 @@ const DECLARE_BITMAP(cpu_all_bits, NR_CPUS) = CPU_BITS_ALL;
31063106
EXPORT_SYMBOL(cpu_all_bits);
31073107

31083108
#ifdef CONFIG_INIT_ALL_POSSIBLE
3109-
struct cpumask __cpu_possible_mask __ro_after_init;
3109+
struct cpumask __cpu_possible_mask __ro_after_init
31103110
= {CPU_BITS_ALL};
31113111
#else
31123112
struct cpumask __cpu_possible_mask __ro_after_init;

0 commit comments

Comments
 (0)