Skip to content

Commit a2d9b75

Browse files
committed
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>
1 parent 173940b commit a2d9b75

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

arch/xtensa/kernel/entry.S

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2173,7 +2173,7 @@ ENDPROC(ret_from_kernel_thread)
21732173

21742174
#ifdef CONFIG_HIBERNATION
21752175

2176-
.bss
2176+
.section .bss, "aw"
21772177
.align 4
21782178
.Lsaved_regs:
21792179
#if defined(__XTENSA_WINDOWED_ABI__)

0 commit comments

Comments
 (0)