diff options
author | YueHaibing <yuehaibing@huawei.com> | 2019-08-22 16:30:07 +0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2019-08-22 19:23:23 +0200 |
commit | 0ce6a624473e7e5752a84416f85f73d082308edd (patch) | |
tree | 047fa8c3e0e1f8636cef194c7fbd1bf5b69a2cca /sound/soc/amd | |
parent | ASoC: mchp-i2s-mcc: Wait for RX/TX RDY only if controller is running (diff) | |
download | linux-0ce6a624473e7e5752a84416f85f73d082308edd.tar.xz linux-0ce6a624473e7e5752a84416f85f73d082308edd.zip |
ASoC: AMD: Fix Kconfig warning without GPIOLIB
While do rand build without GPIOLIB, we get Kconfig warning:\
WARNING: unmet direct dependencies detected for SND_SOC_MAX98357A
Depends on [n]: SOUND [=y] && !UML && SND [=m] && SND_SOC [=m] && GPIOLIB [=n]
Selected by [m]:
- SND_SOC_AMD_CZ_DA7219MX98357_MACH [=m] && SOUND [=y] && !UML && SND [=m] && SND_SOC [=m] && SND_SOC_AMD_ACP [=m] && I2C [=y]
Add GPIOLIB dependency to fix this.
Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: YueHaibing <yuehaibing@huawei.com>
Link: https://lore.kernel.org/r/20190822143007.73644-1-yuehaibing@huawei.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/amd')
-rw-r--r-- | sound/soc/amd/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/amd/Kconfig b/sound/soc/amd/Kconfig index 9ca9214cb7fb..5f40517717c4 100644 --- a/sound/soc/amd/Kconfig +++ b/sound/soc/amd/Kconfig @@ -10,7 +10,7 @@ config SND_SOC_AMD_CZ_DA7219MX98357_MACH select SND_SOC_MAX98357A select SND_SOC_ADAU7002 select REGULATOR - depends on SND_SOC_AMD_ACP && I2C + depends on SND_SOC_AMD_ACP && I2C && GPIOLIB help This option enables machine driver for DA7219 and MAX9835. |