diff options
author | Niklas Schnelle <schnelle@linux.ibm.com> | 2024-04-03 15:25:47 +0200 |
---|---|---|
committer | Andrew Morton <akpm@linux-foundation.org> | 2024-04-26 06:07:05 +0200 |
commit | b157f0e97e3ed6158cde4f247da4c537c3f6a0f9 (patch) | |
tree | 59405b207e1a66bf9d5dddb3e64e52e787f56780 /lib | |
parent | Squashfs: remove deprecated strncpy by not copying the string (diff) | |
download | linux-b157f0e97e3ed6158cde4f247da4c537c3f6a0f9.tar.xz linux-b157f0e97e3ed6158cde4f247da4c537c3f6a0f9.zip |
kgdb: add HAS_IOPORT dependency
In a future patch HAS_IOPORT=n will disable inb()/outb() and friends at
compile time. We thus need to add HAS_IOPORT as dependency for those
drivers using them.
Link: https://lkml.kernel.org/r/20240403132547.762429-2-schnelle@linux.ibm.com
Co-developed-by: Arnd Bergmann <arnd@kernel.org>
Signed-off-by: Arnd Bergmann <arnd@kernel.org>
Signed-off-by: Niklas Schnelle <schnelle@linux.ibm.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Kconfig.kgdb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Kconfig.kgdb b/lib/Kconfig.kgdb index b5c0e6576749..537e1b3f5734 100644 --- a/lib/Kconfig.kgdb +++ b/lib/Kconfig.kgdb @@ -122,6 +122,7 @@ config KDB_DEFAULT_ENABLE config KDB_KEYBOARD bool "KGDB_KDB: keyboard as input device" depends on VT && KGDB_KDB && !PARISC + depends on HAS_IOPORT default n help KDB can use a PS/2 type keyboard for an input device |