diff options
author | Stephen Boyd <sboyd@codeaurora.org> | 2013-12-30 13:15:29 -0800 |
---|---|---|
committer | Olof Johansson <olof@lixom.net> | 2014-01-09 00:06:59 -0800 |
commit | c0f8a48723d1e7ec48f65c72f880bc49edea9a4a (patch) | |
tree | 42659b9311a63d0210a59ed9c6b94e3940f7d96a /drivers/tty | |
parent | 67d55cec096200bad4afe3e14f65724ee300d401 (diff) | |
download | talos-obmc-linux-c0f8a48723d1e7ec48f65c72f880bc49edea9a4a.tar.gz talos-obmc-linux-c0f8a48723d1e7ec48f65c72f880bc49edea9a4a.zip |
tty: serial: Limit msm_serial_hs driver to platforms that use it
The msm_serial_hs driver uses mach specific dma APIs. This is not
compatible with the multi-platform ARM effort. Let's only compile
this driver on MSM devices that are prepared to support it;
allowing the DT based MSM devices to enter the multi-platform ARM
build.
Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
Signed-off-by: Olof Johansson <olof@lixom.net>
Diffstat (limited to 'drivers/tty')
-rw-r--r-- | drivers/tty/serial/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/tty/serial/Kconfig b/drivers/tty/serial/Kconfig index a3817ab8602f..a53159cd62f9 100644 --- a/drivers/tty/serial/Kconfig +++ b/drivers/tty/serial/Kconfig @@ -1035,7 +1035,7 @@ config SERIAL_MSM_CONSOLE config SERIAL_MSM_HS tristate "MSM UART High Speed: Serial Driver" - depends on ARCH_MSM + depends on ARCH_MSM7X00A || ARCH_MSM7X30 || ARCH_QSD8X50 select SERIAL_CORE help If you have a machine based on MSM family of SoCs, you |