diff options
author | Heiko Carstens <heiko.carstens@de.ibm.com> | 2017-05-08 08:03:32 +0200 |
---|---|---|
committer | Martin Schwidefsky <schwidefsky@de.ibm.com> | 2017-06-12 16:25:58 +0200 |
commit | 20d58cb642c640406f6466c64a0899400f52c47b (patch) | |
tree | 6e9031de7c85aef762583096f68261697a4dd2f6 /drivers/tty/hvc/Kconfig | |
parent | c4684f98d3453dd07cc7ce67e0e795330eeec9c5 (diff) | |
download | linux-stable-20d58cb642c640406f6466c64a0899400f52c47b.tar.gz linux-stable-20d58cb642c640406f6466c64a0899400f52c47b.tar.bz2 linux-stable-20d58cb642c640406f6466c64a0899400f52c47b.zip |
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 <heiko.carstens@de.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Diffstat (limited to 'drivers/tty/hvc/Kconfig')
-rw-r--r-- | drivers/tty/hvc/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
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 |