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

Commit 032f1be0 authored by Paul Bolle's avatar Paul Bolle Committed by Martin Schwidefsky
Browse files

s390/smp: remove check for CONFIG_ZFCPDUMP



Commit 725908110a1f ("s390: add SMT support") added a check for
CONFIG_ZFCPDUMP. But the Kconfig symbol ZFCPDUMP was removed in v3.16
through commit bf28a597 ("s390/dump: Remove CONFIG_ZFCPDUMP"). So
this check will always evaluate to false. No one noticed probably
because the code also checks for CONFIG_CRASH_DUMP which "also enables
s390 zfcpdump".

Dump the unneeded check.

Signed-off-by: default avatarPaul Bolle <pebolle@tiscali.nl>
Signed-off-by: default avatarHeiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: default avatarMartin Schwidefsky <schwidefsky@de.ibm.com>
parent 5be6fdc0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -762,7 +762,7 @@ static void __init smp_detect_cpus(void)
			panic("Could not find boot CPU type");
	}

#if defined(CONFIG_ZFCPDUMP) || defined(CONFIG_CRASH_DUMP)
#ifdef CONFIG_CRASH_DUMP
	/* Collect CPU state of previous system */
	smp_store_cpu_states(info);
#endif