diff options
author | Alexander Shiyan <shc_work@mail.ru> | 2013-12-31 20:49:42 +0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-01-07 17:06:18 -0800 |
commit | 093a9e2a20ebc414f8ca0d31709dab1040fa2886 (patch) | |
tree | 8403b0108980e2e14d01fdf08b76d99e7008c685 /drivers/tty/serial/Kconfig | |
parent | 71b9e8c6694f5cfe6cd37d53d6c24a33f1f59abd (diff) | |
download | talos-obmc-linux-093a9e2a20ebc414f8ca0d31709dab1040fa2886.tar.gz talos-obmc-linux-093a9e2a20ebc414f8ca0d31709dab1040fa2886.zip |
serial: clps711x: Enable driver compilation with COMPILE_TEST
This helps increasing build testing coverage.
To do this, read{write}_relaxed() functions was be replaced with
simple read{write}() variants. Potential "uninitialized variable"
warnings was be fixed if driver compiled without MFD_SYSCON.
Signed-off-by: Alexander Shiyan <shc_work@mail.ru>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/tty/serial/Kconfig')
-rw-r--r-- | drivers/tty/serial/Kconfig | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/tty/serial/Kconfig b/drivers/tty/serial/Kconfig index 7fbbbadea2dd..441ada489874 100644 --- a/drivers/tty/serial/Kconfig +++ b/drivers/tty/serial/Kconfig @@ -181,9 +181,8 @@ config SERIAL_KS8695_CONSOLE config SERIAL_CLPS711X tristate "CLPS711X serial port support" - depends on ARCH_CLPS711X + depends on ARCH_CLPS711X || COMPILE_TEST select SERIAL_CORE - default y help This enables the driver for the on-chip UARTs of the Cirrus Logic EP711x/EP721x/EP731x processors. |