Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 598d7656 authored by Sebastian Ott's avatar Sebastian Ott Committed by Martin Schwidefsky
Browse files

s390/kexec_file: add declaration of purgatory related globals



Fix the following sparse complaints:

arch/s390/purgatory/purgatory.c:18:5: warning: symbol 'kernel_entry' was not declared. Should it be static?
arch/s390/purgatory/purgatory.c:19:5: warning: symbol 'kernel_type' was not declared. Should it be static?
arch/s390/purgatory/purgatory.c:21:5: warning: symbol 'crash_start' was not declared. Should it be static?
arch/s390/purgatory/purgatory.c:22:5: warning: symbol 'crash_size' was not declared. Should it be static?

Signed-off-by: default avatarSebastian Ott <sebott@linux.ibm.com>
Signed-off-by: default avatarMartin Schwidefsky <schwidefsky@de.ibm.com>
parent d14be68f
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -13,5 +13,11 @@

int verify_sha256_digest(void);

extern u64 kernel_entry;
extern u64 kernel_type;

extern u64 crash_start;
extern u64 crash_size;

#endif	/* __ASSEMBLY__ */
#endif /* _S390_PURGATORY_H_ */