aboutsummaryrefslogtreecommitdiffstats
path: root/arch/s390/kernel/ipl.c
diff options
context:
space:
mode:
authorVasily Gorbik <gor@linux.ibm.com>2018-04-03 16:03:03 +0200
committerMartin Schwidefsky <schwidefsky@de.ibm.com>2018-04-10 07:38:59 +0200
commit283abedb1bd67e22f05fe4e79e1722bd7c7ed3be (patch)
tree823ff4345b88899e3b0ef04130e0623347afc413 /arch/s390/kernel/ipl.c
parents390/ipl: get rid of ipl_ssid and ipl_devno (diff)
downloadlinux-dev-283abedb1bd67e22f05fe4e79e1722bd7c7ed3be.tar.xz
linux-dev-283abedb1bd67e22f05fe4e79e1722bd7c7ed3be.zip
s390/ipl: move ipl_flags to ipl.c
ipl_flags and corresponding enum are not used outside of ipl.c and will be reworked in later commits. Reviewed-by: Heiko Carstens <heiko.carstens@de.ibm.com> Signed-off-by: Vasily Gorbik <gor@linux.ibm.com> Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Diffstat (limited to 'arch/s390/kernel/ipl.c')
-rw-r--r--arch/s390/kernel/ipl.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/arch/s390/kernel/ipl.c b/arch/s390/kernel/ipl.c
index a2224f37e3a5..ffecd7cf34b6 100644
--- a/arch/s390/kernel/ipl.c
+++ b/arch/s390/kernel/ipl.c
@@ -119,7 +119,15 @@ static char *dump_type_str(enum dump_type type)
}
}
-u32 ipl_flags;
+enum {
+ IPL_DEVNO_VALID = 1,
+ IPL_PARMBLOCK_VALID = 2,
+};
+
+/*
+ * IPL validity flags
+ */
+static u32 ipl_flags;
enum ipl_method {
REIPL_METHOD_CCW_CIO,