diff options
author | Max Filippov <jcmvbkbc@gmail.com> | 2019-09-27 17:21:25 -0700 |
---|---|---|
committer | Max Filippov <jcmvbkbc@gmail.com> | 2019-10-20 23:48:29 -0700 |
commit | 9fab17ca9afe3e21c2268a742103f477316af6ec (patch) | |
tree | 15e069437e3917511934b38aa7352ed704be5204 /arch/xtensa/kernel/head.S | |
parent | 6af4ab570db3dc71e877271a17e5e2b337e0bdc0 (diff) | |
download | linux-9fab17ca9afe3e21c2268a742103f477316af6ec.tar.bz2 |
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>
Diffstat (limited to 'arch/xtensa/kernel/head.S')
-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 |