diff options
author | Max Filippov <jcmvbkbc@gmail.com> | 2022-06-20 12:45:10 +0300 |
---|---|---|
committer | Max Filippov <jcmvbkbc@gmail.com> | 2022-06-20 12:50:34 +0300 |
commit | a2d9b75b19dc8863f0845ffb401d33b2286d0aa1 (patch) | |
tree | e1ba6fbc09a99f8b8cb4fd5f4b694aef1d5c7c90 /arch/xtensa | |
parent | 173940b3ae40114d4179c251a98ee039dc9cd5b3 (diff) | |
download | linux-a2d9b75b19dc8863f0845ffb401d33b2286d0aa1.tar.xz |
xtensa: change '.bss' to '.section .bss'
For some reason (ancient assembler?) the following build error is
reported by the kisskb:
kisskb/src/arch/xtensa/kernel/entry.S: Error: unknown pseudo-op: `.bss':
=> 2176
Change abbreviated '.bss' to the full '.section .bss, "aw"' to fix this
error.
Reported-by: Geert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
Diffstat (limited to 'arch/xtensa')
-rw-r--r-- | arch/xtensa/kernel/entry.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/xtensa/kernel/entry.S b/arch/xtensa/kernel/entry.S index e3eae648ba2e..ab30bcb46290 100644 --- a/arch/xtensa/kernel/entry.S +++ b/arch/xtensa/kernel/entry.S @@ -2173,7 +2173,7 @@ ENDPROC(ret_from_kernel_thread) #ifdef CONFIG_HIBERNATION - .bss + .section .bss, "aw" .align 4 .Lsaved_regs: #if defined(__XTENSA_WINDOWED_ABI__) |