riscv: head: make secondary_start_common() static

There are no users outside head.S so make secondary_start_common()
static.

Signed-off-by: Jisheng Zhang <jszhang@kernel.org>
Signed-off-by: Palmer Dabbelt <palmer@rivosinc.com>
This commit is contained in:
Jisheng Zhang 2021-11-29 00:07:38 +08:00 committed by Palmer Dabbelt
parent 7f3de1adb3
commit 153c46faf6
No known key found for this signature in database
GPG Key ID: 2E1319F35FBB1889

View File

@ -177,8 +177,7 @@ secondary_start_sbi:
REG_L sp, (a4)
REG_L tp, (a5)
.global secondary_start_common
secondary_start_common:
.Lsecondary_start_common:
#ifdef CONFIG_MMU
/* Enable virtual memory and relocate to virtual address */
@ -365,7 +364,7 @@ clear_bss_done:
beqz tp, .Lwait_for_cpu_up
fence
tail secondary_start_common
tail .Lsecondary_start_common
#endif
END(_start_kernel)