diff options
author | Antonio Ospite <ao2@ao2.it> | 2016-01-25 18:23:30 +0100 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2016-01-27 13:41:08 +0000 |
commit | 7315917f7ccdf5eb5758f663a781daa7599d63d7 (patch) | |
tree | 63a59433e9b81263e7060b5d55520793efc35611 /sound/soc | |
parent | 92e963f50fc74041b5e9e744c330dca48e04f08d (diff) | |
download | linux-stable-7315917f7ccdf5eb5758f663a781daa7599d63d7.tar.gz linux-stable-7315917f7ccdf5eb5758f663a781daa7599d63d7.tar.bz2 linux-stable-7315917f7ccdf5eb5758f663a781daa7599d63d7.zip |
ASoC: rk3036: fix missing dependency on REGMAP_MMIO
When SND_SOC_INNO_RK3036 is enabled but REGMAP_MMIO is not, the MODPOST
step fails with this error:
...
Kernel: arch/x86/boot/bzImage is ready (#3)
Building modules, stage 2.
MODPOST 3203 modules
ERROR: "__devm_regmap_init_mmio_clk" [sound/soc/codecs/snd-soc-inno-rk3036.ko] undefined!
Signed-off-by: Antonio Ospite <ao2@ao2.it>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc')
-rw-r--r-- | sound/soc/codecs/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sound/soc/codecs/Kconfig b/sound/soc/codecs/Kconfig index 50693c867e71..1f7eaa919088 100644 --- a/sound/soc/codecs/Kconfig +++ b/sound/soc/codecs/Kconfig @@ -497,6 +497,7 @@ config SND_SOC_ICS43432 config SND_SOC_INNO_RK3036 tristate "Inno codec driver for RK3036 SoC" + select REGMAP_MMIO config SND_SOC_ISABELLE tristate |