From: Heiko Carstens Date: Mon, 8 May 2017 06:03:32 +0000 (+0200) Subject: s390/hvc_iucv: fix broken Kconfig select statement X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=20d58cb642c640406f6466c64a0899400f52c47b;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.git s390/hvc_iucv: fix broken Kconfig select statement Select statements in Kconfig do not necessarily enable all required dependencies and can lead to broken configs. This is also the case for the "select IUCV" statement within HVC_IUCV: warning: (HVC_IUCV) selects IUCV which has unmet direct dependencies (NET && S390) Just add the missing "depends on NET" to avoid broken configs. Signed-off-by: Heiko Carstens Signed-off-by: Martin Schwidefsky --- diff --git a/drivers/tty/hvc/Kconfig b/drivers/tty/hvc/Kconfig index 574da15fe618..b8d5ea0ae26b 100644 --- a/drivers/tty/hvc/Kconfig +++ b/drivers/tty/hvc/Kconfig @@ -44,7 +44,7 @@ config HVC_RTAS config HVC_IUCV bool "z/VM IUCV Hypervisor console support (VM only)" - depends on S390 + depends on S390 && NET select HVC_DRIVER select IUCV default y