projects
/
linux-block.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
173940b
)
xtensa: change '.bss' to '.section .bss'
author
Max Filippov
<jcmvbkbc@gmail.com>
Mon, 20 Jun 2022 09:45:10 +0000
(
02:45
-0700)
committer
Max Filippov
<jcmvbkbc@gmail.com>
Mon, 20 Jun 2022 09:50:34 +0000
(
02:50
-0700)
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>
arch/xtensa/kernel/entry.S
patch
|
blob
|
blame
|
history
diff --git
a/arch/xtensa/kernel/entry.S
b/arch/xtensa/kernel/entry.S
index e3eae648ba2e924f263f4b0feb4ca4ceb4ecbdff..ab30bcb462903b585a8086401a061598507e469b 100644
(file)
--- 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__)