diff options
author | Niklas Schnelle <schnelle@linux.ibm.com> | 2023-05-22 12:50:37 +0200 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2023-05-22 16:43:47 +0200 |
commit | 36a52ae64ba85f075998921ae1881c01f29ddf31 (patch) | |
tree | 01675124f7be26f3014e62368e01315202aff7b5 /sound/isa/Kconfig | |
parent | 4040fc51ca37b198bb43f716e1868fe7ff5d731c (diff) |
ALSA: add HAS_IOPORT dependencies
In a future patch HAS_IOPORT=n will result in inb()/outb() and friends
not being declared. We thus need to add HAS_IOPORT as dependency for
those drivers using them.
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>
Acked-by: Jaroslav Kysela <perex@perex.cz>
Link: https://lore.kernel.org/r/20230522105049.1467313-33-schnelle@linux.ibm.com
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/isa/Kconfig')
-rw-r--r-- | sound/isa/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sound/isa/Kconfig b/sound/isa/Kconfig index 6ffa48dd5983..f8159179e38d 100644 --- a/sound/isa/Kconfig +++ b/sound/isa/Kconfig @@ -23,6 +23,7 @@ menuconfig SND_ISA bool "ISA sound devices" depends on ISA || COMPILE_TEST depends on ISA_DMA_API + depends on HAS_IOPORT default y help Support for sound devices connected via the ISA bus. |