]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
s390/hvc_iucv: fix broken Kconfig select statement
authorHeiko Carstens <heiko.carstens@de.ibm.com>
Mon, 8 May 2017 06:03:32 +0000 (08:03 +0200)
committerMartin Schwidefsky <schwidefsky@de.ibm.com>
Mon, 12 Jun 2017 14:25:58 +0000 (16:25 +0200)
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 <heiko.carstens@de.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
drivers/tty/hvc/Kconfig

index 574da15fe618ed57837ffa7f9ccfdeef03e89cc9..b8d5ea0ae26b49e8814ac2f187a708a77a23f92f 100644 (file)
@@ -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