diff options
author | Axel Lin <axel.lin@ingics.com> | 2015-09-18 03:25:32 -0400 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2015-09-19 10:47:57 -0400 |
commit | 9d70594760a94523c550d2cc0f47b3c0af63c8e9 (patch) | |
tree | 8269350ba3a75ea57a2b37d4a594be99823e4f0c | |
parent | 6ff33f3902c3b1c5d0db6b1e2c70b6d76fba357f (diff) |
ASoC: rockchip: Fix missing CLKDEV_LOOKUP dependency
Make SND_SOC_ROCKCHIP_MAX98090 and SND_SOC_ROCKCHIP_RT5645 depend on
CLKDEV_LOOKUP to fix below build warning:
warning: (SND_SOC_ROCKCHIP_MAX98090 && SND_SOC_ROCKCHIP_RT5645) selects
SND_SOC_ROCKCHIP_I2S which has unmet direct dependencies (SOUND && !M68K &&
!UML && SND && SND_SOC && CLKDEV_LOOKUP && SND_SOC_ROCKCHIP)
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r-- | sound/soc/rockchip/Kconfig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/rockchip/Kconfig b/sound/soc/rockchip/Kconfig index 58bae8e2cf5f..570905709d3a 100644 --- a/sound/soc/rockchip/Kconfig +++ b/sound/soc/rockchip/Kconfig | |||
@@ -17,7 +17,7 @@ config SND_SOC_ROCKCHIP_I2S | |||
17 | 17 | ||
18 | config SND_SOC_ROCKCHIP_MAX98090 | 18 | config SND_SOC_ROCKCHIP_MAX98090 |
19 | tristate "ASoC support for Rockchip boards using a MAX98090 codec" | 19 | tristate "ASoC support for Rockchip boards using a MAX98090 codec" |
20 | depends on SND_SOC_ROCKCHIP && I2C && GPIOLIB | 20 | depends on SND_SOC_ROCKCHIP && I2C && GPIOLIB && CLKDEV_LOOKUP |
21 | select SND_SOC_ROCKCHIP_I2S | 21 | select SND_SOC_ROCKCHIP_I2S |
22 | select SND_SOC_MAX98090 | 22 | select SND_SOC_MAX98090 |
23 | select SND_SOC_TS3A227E | 23 | select SND_SOC_TS3A227E |
@@ -27,7 +27,7 @@ config SND_SOC_ROCKCHIP_MAX98090 | |||
27 | 27 | ||
28 | config SND_SOC_ROCKCHIP_RT5645 | 28 | config SND_SOC_ROCKCHIP_RT5645 |
29 | tristate "ASoC support for Rockchip boards using a RT5645/RT5650 codec" | 29 | tristate "ASoC support for Rockchip boards using a RT5645/RT5650 codec" |
30 | depends on SND_SOC_ROCKCHIP && I2C && GPIOLIB | 30 | depends on SND_SOC_ROCKCHIP && I2C && GPIOLIB && CLKDEV_LOOKUP |
31 | select SND_SOC_ROCKCHIP_I2S | 31 | select SND_SOC_ROCKCHIP_I2S |
32 | select SND_SOC_RT5645 | 32 | select SND_SOC_RT5645 |
33 | help | 33 | help |