serial: 8250_mid: make option visible
authorJean Delvare <jdelvare@suse.de>
Mon, 19 Dec 2016 09:59:42 +0000 (10:59 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 12 Jan 2017 10:51:25 +0000 (11:51 +0100)
Hiding tristate options with "if EXPERT" is usually not a good idea.
You can decide that the driver should be included by default, but you
don't know if the user wants it built-in or as a module. Hiding the
option prevents the user from making that decision.

This is even more problematic when said option selects other options.
You end up with several device drivers forcibly built into the kernel.

In this specific case, drivers 8250_mid, virt-dma, hsu_dma and
hsu_dma_pci end up being built-in as soon as SERIAL_8250=y. It is
very common for distribution kernels to build the subsystem core code
into the kernel, because almost everybody will need it, but build all
the device drivers as modules. This should be made possible.

So drop the "if EXPERT" and make SERIAL_8250_MID visible.

Signed-off-by: Jean Delvare <jdelvare@suse.de>
Fixes: 1fc969c75986 ("serial: 8250_mid: make module available only on X86")
Cc: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Cc: Jiri Slaby <jslaby@suse.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/tty/serial/8250/Kconfig

index cd8fafe..c0bf996 100644 (file)
@@ -417,7 +417,7 @@ config SERIAL_8250_LPSS
            - Intel Quark X1000 SoC
 
 config SERIAL_8250_MID
-       tristate "Support for serial ports on Intel MID platforms" if EXPERT
+       tristate "Support for serial ports on Intel MID platforms"
        default SERIAL_8250
        depends on SERIAL_8250 && PCI
        depends on X86 || COMPILE_TEST