diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2015-10-23 15:31:16 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-12-14 04:59:48 +0100 |
commit | 4828d5c30a2e1d300f7ca7c15868cead2ef7fb29 (patch) | |
tree | 6b8d8e5ef0fcb1bb11e259a3892cfd507e5518ec /drivers/tty/serial/8250/Kconfig | |
parent | serial: 8250_ingenic: delete redundant "select SERIAL_EARLYCON" (diff) | |
download | linux-4828d5c30a2e1d300f7ca7c15868cead2ef7fb29.tar.xz linux-4828d5c30a2e1d300f7ca7c15868cead2ef7fb29.zip |
serial: 8250_ingenic: allow to be independent of SERIAL_8250_CONSOLE
This UART driver should not depend on the console. They should be
orthogonal.
Surround the earlycon code with CONFIG_SERIAL_EARLYCON conditional
and rip off "depends on SERIAL_8250_CONSOLE".
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Reviewed-by: Peter Hurley <peter@hurleysoftware.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/tty/serial/8250/Kconfig')
-rw-r--r-- | drivers/tty/serial/8250/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/tty/serial/8250/Kconfig b/drivers/tty/serial/8250/Kconfig index 5d6808c226e9..25da430bb58b 100644 --- a/drivers/tty/serial/8250/Kconfig +++ b/drivers/tty/serial/8250/Kconfig @@ -361,7 +361,7 @@ config SERIAL_8250_UNIPHIER config SERIAL_8250_INGENIC bool "Support for Ingenic SoC serial ports" - depends on SERIAL_8250_CONSOLE && OF_FLATTREE + depends on OF_FLATTREE select LIBFDT help If you have a system using an Ingenic SoC and wish to make use of |