Skip to content

Commit e7dec0b

Browse files
svens-s390hcahca
authored andcommitted
s390/boot: Remove alt_stfle_fac_list from decompressor
It is nowhere used in the decompressor, therefore remove it. Fixes: 17e89e1 ("s390/facilities: move stfl information from lowcore to global data") Reviewed-by: Heiko Carstens <hca@linux.ibm.com> Signed-off-by: Sven Schnelle <svens@linux.ibm.com> Signed-off-by: Heiko Carstens <hca@linux.ibm.com>
1 parent 306d6bd commit e7dec0b

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

arch/s390/boot/startup.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ unsigned long __bootdata_preserved(MODULES_END);
3232
unsigned long __bootdata_preserved(max_mappable);
3333

3434
u64 __bootdata_preserved(stfle_fac_list[16]);
35-
u64 __bootdata_preserved(alt_stfle_fac_list[16]);
3635
struct oldmem_data __bootdata_preserved(oldmem_data);
3736

3837
struct machine_info machine;

arch/s390/kernel/setup.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ unsigned int __bootdata_preserved(zlib_dfltcc_support);
155155
EXPORT_SYMBOL(zlib_dfltcc_support);
156156
u64 __bootdata_preserved(stfle_fac_list[16]);
157157
EXPORT_SYMBOL(stfle_fac_list);
158-
u64 __bootdata_preserved(alt_stfle_fac_list[16]);
158+
u64 alt_stfle_fac_list[16];
159159
struct oldmem_data __bootdata_preserved(oldmem_data);
160160

161161
unsigned long VMALLOC_START;

0 commit comments

Comments
 (0)