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/pcmcia | |
parent | ALSA: mixart: Replace one-element arrays with simple object declarations (diff) | |
download | linux-36a52ae64ba85f075998921ae1881c01f29ddf31.tar.xz linux-36a52ae64ba85f075998921ae1881c01f29ddf31.zip |
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/pcmcia')
-rw-r--r-- | sound/pcmcia/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sound/pcmcia/Kconfig b/sound/pcmcia/Kconfig index 10291c43cb18..2e3dfc1ff540 100644 --- a/sound/pcmcia/Kconfig +++ b/sound/pcmcia/Kconfig @@ -4,6 +4,7 @@ menuconfig SND_PCMCIA bool "PCMCIA sound devices" depends on PCMCIA + depends on HAS_IOPORT default y help Support for sound devices connected via the PCMCIA bus. |