serial: 8250/ingenic: fix building with SERIAL_8250=m
authorArnd Bergmann <arnd@arndb.de>
Wed, 17 Feb 2016 15:02:34 +0000 (16:02 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 8 Mar 2016 00:11:14 +0000 (16:11 -0800)
commit7d774fb8ca8c8686413ce847dc74473cc6196e7d
treef26bc471d05a9c354f1ac51220bc3ae02a011183
parenta2d3ea2f23993df70c9c3740a01be25e6af19a0b
serial: 8250/ingenic: fix building with SERIAL_8250=m

The Ingenic 8250 driver has a 'bool' Kconfig symbol, but that
breaks when SERIAL_8250 is a loadable module:

drivers/tty/built-in.o: In function `ingenic_uart_probe':
8250_ingenic.c:(.text+0x1c1a0): undefined reference to `serial8250_register_8250_port'

This changes the symbol to a 'tristate', plus a dependency on
SERIAL_8250, which makes it work again. Unlike the other
soc-specific backends, this one has no dependency on an
architecture or a platform. I'm adding a dependency on
MIPS || COMPILE_TEST as well here, to avoid showing the driver
on architectures that are not interested in it.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/tty/serial/8250/8250_ingenic.c
drivers/tty/serial/8250/Kconfig
This page took 0.025392 seconds and 5 git commands to generate.