aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/tty
diff options
context:
space:
mode:
authorJakub Kicinski <kubakici@wp.pl>2015-07-01 14:19:52 +0200
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2015-07-23 15:32:32 -0700
commit32aa6339d9c5156de5d881b103e0e360934d6a74 (patch)
tree1020d9427dcf1e2a75fdf5f0c9e5b2b181efcb5f /drivers/tty
parentserial: etraxfs-uart: Fix release etraxfs_uart_ports (diff)
downloadlinux-dev-32aa6339d9c5156de5d881b103e0e360934d6a74.tar.xz
linux-dev-32aa6339d9c5156de5d881b103e0e360934d6a74.zip
sc16is7xx: fix Kconfig dependencies
When I2C=m and SPI=y or-ing them will produce =y while what we need is the lower bound, i.e. =m. Fortunately SPI is a boolean so we need to handle only one special case. Reported-by: kbuild test robot <fengguang.wu@intel.com> Signed-off-by: Jakub Kicinski <kubakici@wp.pl> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/tty')
-rw-r--r--drivers/tty/serial/Kconfig2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/tty/serial/Kconfig b/drivers/tty/serial/Kconfig
index 76e65b714471..15b4079a335e 100644
--- a/drivers/tty/serial/Kconfig
+++ b/drivers/tty/serial/Kconfig
@@ -1185,7 +1185,7 @@ config SERIAL_SC16IS7XX_CORE
config SERIAL_SC16IS7XX
tristate "SC16IS7xx serial support"
select SERIAL_CORE
- depends on I2C || SPI_MASTER
+ depends on (SPI_MASTER && !I2C) || I2C
help
This selects support for SC16IS7xx serial ports.
Supported ICs are SC16IS740, SC16IS741, SC16IS750, SC16IS752,