diff options
| author | Jiri Slaby (SUSE) <jirislaby@kernel.org> | 2025-08-22 12:42:08 +0200 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2025-09-06 15:48:56 +0200 |
| commit | 5a66087107b80ac4e58a94f37d9b8d12e22b4071 (patch) | |
| tree | d9a0c7d4cc3e8d4da5b6f8a3f8601e1a7bfe96d7 | |
| parent | tty: n_gsm: Don't block input queue by waiting MSC (diff) | |
| download | linux-5a66087107b80ac4e58a94f37d9b8d12e22b4071.tar.gz linux-5a66087107b80ac4e58a94f37d9b8d12e22b4071.zip | |
m68k: make HPDCA and HPAPCI bools
The only user -- 8250_hp300 -- tests for CONFIG_HPDCA and CONFIG_HPAPCI.
It does not test for *_MODULE variants. That means that if someone sets
the configs to =m, the code is not compiled at all.
There is actually no point having these as tristate. Switch them to
bool.
Signed-off-by: Jiri Slaby (SUSE) <jirislaby@kernel.org>
Cc: Geert Uytterhoeven <geert@linux-m68k.org>
Cc: linux-m68k@lists.linux-m68k.org
Link: https://lore.kernel.org/r/20250822104208.751191-1-jirislaby@kernel.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
| -rw-r--r-- | arch/m68k/Kconfig.devices | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/m68k/Kconfig.devices b/arch/m68k/Kconfig.devices index e6e3efac1840..e277f1bd2de1 100644 --- a/arch/m68k/Kconfig.devices +++ b/arch/m68k/Kconfig.devices @@ -105,14 +105,14 @@ config AMIGA_BUILTIN_SERIAL To compile this driver as a module, choose M here. config HPDCA - tristate "HP DCA serial support" + bool "HP DCA serial support" depends on DIO && SERIAL_8250 help If you want to use the internal "DCA" serial ports on an HP300 machine, say Y here. config HPAPCI - tristate "HP APCI serial support" + bool "HP APCI serial support" depends on HP300 && SERIAL_8250 help If you want to use the internal "APCI" serial ports on an HP400 |
