diff options
author | Max Filippov <jcmvbkbc@gmail.com> | 2019-09-28 02:21:25 +0200 |
---|---|---|
committer | Max Filippov <jcmvbkbc@gmail.com> | 2019-10-21 08:48:29 +0200 |
commit | 9fab17ca9afe3e21c2268a742103f477316af6ec (patch) | |
tree | 15e069437e3917511934b38aa7352ed704be5204 | |
parent | xtensa: move MPU constants from .data to .ref.rodata (diff) | |
download | linux-9fab17ca9afe3e21c2268a742103f477316af6ec.tar.xz linux-9fab17ca9afe3e21c2268a742103f477316af6ec.zip |
xtensa: fix section name for start_info
.data.init.refok has been removed from the kernel long ago, replaced
with __REFDATA. Fix start_info definition.
Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
-rw-r--r-- | arch/xtensa/kernel/head.S | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/xtensa/kernel/head.S b/arch/xtensa/kernel/head.S index 4ae998b5a348..2cec13a457d7 100644 --- a/arch/xtensa/kernel/head.S +++ b/arch/xtensa/kernel/head.S @@ -355,10 +355,10 @@ ENDPROC(cpu_restart) * DATA section */ - .section ".data.init.refok" - .align 4 + __REFDATA + .align 4 ENTRY(start_info) - .long init_thread_union + KERNEL_STACK_SIZE + .long init_thread_union + KERNEL_STACK_SIZE /* * BSS section |