hc
2024-12-19 9370bb92b2d16684ee45cf24e879c93c509162da
kernel/arch/arc/kernel/smp.c
....@@ -1,9 +1,6 @@
1
+// SPDX-License-Identifier: GPL-2.0-only
12 /*
23 * Copyright (C) 2004, 2007-2010, 2011-2012 Synopsys, Inc. (www.synopsys.com)
3
- *
4
- * This program is free software; you can redistribute it and/or modify
5
- * it under the terms of the GNU General Public License version 2 as
6
- * published by the Free Software Foundation.
74 *
85 * RajeshwarR: Dec 11, 2007
96 * -- Added support for Inter Processor Interrupts
....@@ -192,7 +189,6 @@
192189 pr_info("## CPU%u LIVE ##: Executing Code...\n", cpu);
193190
194191 local_irq_enable();
195
- preempt_disable();
196192 cpu_startup_entry(CPUHP_AP_ONLINE_IDLE);
197193 }
198194
....@@ -229,7 +225,7 @@
229225 }
230226
231227 if (!cpu_online(cpu)) {
232
- pr_info("Timeout: CPU%u FAILED to comeup !!!\n", cpu);
228
+ pr_info("Timeout: CPU%u FAILED to come up !!!\n", cpu);
233229 return -1;
234230 }
235231