diff options
author | Vasily Khoruzhick <anarsoul@gmail.com> | 2018-11-08 20:24:19 -0800 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2018-11-13 15:02:22 -0800 |
commit | 9ee325d029c4abb75716851ce38863845911d605 (patch) | |
tree | 2a94fa6808398e2126c54d1d61956489441fc4c2 /sound | |
parent | 4c10473d6ddf12ec124c9ff71a5d23bb5388478b (diff) | |
download | linux-9ee325d029c4abb75716851ce38863845911d605.tar.gz linux-9ee325d029c4abb75716851ce38863845911d605.tar.bz2 linux-9ee325d029c4abb75716851ce38863845911d605.zip |
ASoC: sun8i-codec: add missing route for ADC
sun8i-codec misses a route from ADC to AIF1 Slot 0 ADC. Add it
to the driver to avoid adding it to every dts.
Fixes: eda85d1fee05d ("ASoC: sun8i-codec: Add ADC support for a33")
Signed-off-by: Vasily Khoruzhick <anarsoul@gmail.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/soc/sunxi/sun8i-codec.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sound/soc/sunxi/sun8i-codec.c b/sound/soc/sunxi/sun8i-codec.c index c4196d4e5915..92c5de026c43 100644 --- a/sound/soc/sunxi/sun8i-codec.c +++ b/sound/soc/sunxi/sun8i-codec.c @@ -481,7 +481,11 @@ static const struct snd_soc_dapm_route sun8i_codec_dapm_routes[] = { { "Right Digital DAC Mixer", "AIF1 Slot 0 Digital DAC Playback Switch", "AIF1 Slot 0 Right"}, - /* ADC routes */ + /* ADC Routes */ + { "AIF1 Slot 0 Right ADC", NULL, "ADC" }, + { "AIF1 Slot 0 Left ADC", NULL, "ADC" }, + + /* ADC Mixer Routes */ { "Left Digital ADC Mixer", "AIF1 Data Digital ADC Capture Switch", "AIF1 Slot 0 Left ADC" }, { "Right Digital ADC Mixer", "AIF1 Data Digital ADC Capture Switch", |