diff options
-rw-r--r-- | arch/arc/include/asm/smp.h | 2 | ||||
-rw-r--r-- | arch/arc/kernel/head.S | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/arch/arc/include/asm/smp.h b/arch/arc/include/asm/smp.h index c4fb211dcd25..eefc29f08cdb 100644 --- a/arch/arc/include/asm/smp.h +++ b/arch/arc/include/asm/smp.h | |||
@@ -30,7 +30,7 @@ extern void arch_send_call_function_ipi_mask(const struct cpumask *mask); | |||
30 | * APIs provided by arch SMP code to rest of arch code | 30 | * APIs provided by arch SMP code to rest of arch code |
31 | */ | 31 | */ |
32 | extern void __init smp_init_cpus(void); | 32 | extern void __init smp_init_cpus(void); |
33 | extern void __init first_lines_of_secondary(void); | 33 | extern void first_lines_of_secondary(void); |
34 | extern const char *arc_platform_smp_cpuinfo(void); | 34 | extern const char *arc_platform_smp_cpuinfo(void); |
35 | 35 | ||
36 | /* | 36 | /* |
diff --git a/arch/arc/kernel/head.S b/arch/arc/kernel/head.S index 0f944f024513..2c878e964a64 100644 --- a/arch/arc/kernel/head.S +++ b/arch/arc/kernel/head.S | |||
@@ -95,7 +95,7 @@ stext: | |||
95 | ;---------------------------------------------------------------- | 95 | ;---------------------------------------------------------------- |
96 | ; First lines of code run by secondary before jumping to 'C' | 96 | ; First lines of code run by secondary before jumping to 'C' |
97 | ;---------------------------------------------------------------- | 97 | ;---------------------------------------------------------------- |
98 | .section .init.text, "ax",@progbits | 98 | .section .text, "ax",@progbits |
99 | .type first_lines_of_secondary, @function | 99 | .type first_lines_of_secondary, @function |
100 | .globl first_lines_of_secondary | 100 | .globl first_lines_of_secondary |
101 | 101 | ||