summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Ott <sebott@linux.ibm.com>2018-04-25 12:39:06 +0200
committerMartin Schwidefsky <schwidefsky@de.ibm.com>2018-04-27 06:51:31 +0200
commit598d76562cc2329ef2fdd95475e287b60ba9463f (patch)
tree111705a8eab56a5014ca858d42a53c84c86ac9b5
parentd14be68fd1be2b33e362594b831eef6f007febe5 (diff)
downloadlinux-598d76562cc2329ef2fdd95475e287b60ba9463f.tar.gz
linux-598d76562cc2329ef2fdd95475e287b60ba9463f.tar.bz2
linux-598d76562cc2329ef2fdd95475e287b60ba9463f.zip
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: Sebastian Ott <sebott@linux.ibm.com> Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
-rw-r--r--arch/s390/include/asm/purgatory.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/s390/include/asm/purgatory.h b/arch/s390/include/asm/purgatory.h
index e297bcfc476f..6090670df51f 100644
--- a/arch/s390/include/asm/purgatory.h
+++ b/arch/s390/include/asm/purgatory.h
@@ -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_ */