diff options
author | Annaliese McDermond <nh6z@nh6z.net> | 2019-03-30 09:02:02 -0700 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2019-04-01 14:54:39 +0700 |
commit | c63adb28f6d913310430f14c69f0a2ea55eed0cc (patch) | |
tree | 52e8dc1f746131bc06cb986984b6c5d42bf83011 /sound | |
parent | 36e075ce74ec4e261a638bf09d10b3348ca4d883 (diff) | |
download | linux-c63adb28f6d913310430f14c69f0a2ea55eed0cc.tar.bz2 |
ASoC: tlv320aic32x4: Fix Common Pins
The common pins were mistakenly not added to the DAPM graph.
Adding these pins will allow valid graphs to be created.
Signed-off-by: Annaliese McDermond <nh6z@nh6z.net>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/soc/codecs/tlv320aic32x4.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sound/soc/codecs/tlv320aic32x4.c b/sound/soc/codecs/tlv320aic32x4.c index 96f1526cb258..5520044929f4 100644 --- a/sound/soc/codecs/tlv320aic32x4.c +++ b/sound/soc/codecs/tlv320aic32x4.c @@ -490,6 +490,8 @@ static const struct snd_soc_dapm_widget aic32x4_dapm_widgets[] = { SND_SOC_DAPM_INPUT("IN2_R"), SND_SOC_DAPM_INPUT("IN3_L"), SND_SOC_DAPM_INPUT("IN3_R"), + SND_SOC_DAPM_INPUT("CM_L"), + SND_SOC_DAPM_INPUT("CM_R"), }; static const struct snd_soc_dapm_route aic32x4_dapm_routes[] = { |