diff options
author | Mark Brown <broonie@kernel.org> | 2022-02-02 22:23:33 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2022-02-08 16:38:00 +0300 |
commit | 805fff750107bce59f769a54f77205a8c4c37705 (patch) | |
tree | 3abfa12d2e88559210b428474b0c8393e5bfba95 /sound/soc/codecs/Kconfig | |
parent | 8e70aaae32b72d3088d18a3447b67112b3f5979a (diff) | |
download | linux-805fff750107bce59f769a54f77205a8c4c37705.tar.xz |
ASoC: simple-mux: Depend on gpiolib rather than selecting it
The simple-mux driver requires gpiolib. Currently it selects GPIOLIB but
since the use of select can lead to issues with randconfig let's instead
depend on GPIOLIB, select is more idiomatically used for Kconfig symbols
that are not user selectable but GPIOLIB is user selectable.
Signed-off-by: Mark Brown <broonie@kernel.org>
Link: https://lore.kernel.org/r/20220202192333.3655269-7-broonie@kernel.org
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/codecs/Kconfig')
-rw-r--r-- | sound/soc/codecs/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/Kconfig b/sound/soc/codecs/Kconfig index 8a2e1c61f616..0ef2cfe40723 100644 --- a/sound/soc/codecs/Kconfig +++ b/sound/soc/codecs/Kconfig @@ -1394,7 +1394,7 @@ config SND_SOC_SIMPLE_AMPLIFIER config SND_SOC_SIMPLE_MUX tristate "Simple Audio Mux" - select GPIOLIB + depends on GPIOLIB config SND_SOC_SPDIF tristate "S/PDIF CODEC" |