diff options
author | Heiko Carstens <hca@linux.ibm.com> | 2024-09-04 11:39:22 +0200 |
---|---|---|
committer | Heiko Carstens <hca@linux.ibm.com> | 2024-09-07 17:12:41 +0200 |
commit | 6fa7aea6a9fc8eb49d879ac66bf27460e70c83b3 (patch) | |
tree | d428f70b2cb526cf97a2a2dc8c38d008d042d557 /arch/s390/boot | |
parent | 992b7066800f3957e40b3a9d5ed4f041b998fec1 (diff) |
s390/als: Remove obsolete comment
The bss section of the decompressor is part of the compressed kernel image
since commit 980d5f9ab36b ("s390/boot: enable .bss section for compressed
kernel").
Remove a now incorrect comment that states that the bss section must not be
accessed.
Reviewed-by: Sven Schnelle <svens@linux.ibm.com>
Signed-off-by: Heiko Carstens <hca@linux.ibm.com>
Diffstat (limited to 'arch/s390/boot')
-rw-r--r-- | arch/s390/boot/als.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/arch/s390/boot/als.c b/arch/s390/boot/als.c index 47c48fbfb563..efb6caa89e03 100644 --- a/arch/s390/boot/als.c +++ b/arch/s390/boot/als.c @@ -9,14 +9,6 @@ #include <asm/sclp.h> #include "boot.h" -/* - * The code within this file will be called very early. It may _not_ - * access anything within the bss section, since that is not cleared - * yet and may contain data (e.g. initrd) that must be saved by other - * code. - * For temporary objects the stack (16k) should be used. - */ - static unsigned long als[] = { FACILITIES_ALS }; static void u16_to_hex(char *str, u16 val) |