]> git.ipfire.org Git - thirdparty/kernel/stable-queue.git/blob - queue-4.4/asoc-tlv320aic32x4-fix-common-pins.patch
4.4-stable patches
[thirdparty/kernel/stable-queue.git] / queue-4.4 / asoc-tlv320aic32x4-fix-common-pins.patch
1 From eb33cc190aea75317dab19ed97eaf6f3483ca4b1 Mon Sep 17 00:00:00 2001
2 From: Annaliese McDermond <nh6z@nh6z.net>
3 Date: Sat, 30 Mar 2019 09:02:02 -0700
4 Subject: ASoC: tlv320aic32x4: Fix Common Pins
5
6 [ Upstream commit c63adb28f6d913310430f14c69f0a2ea55eed0cc ]
7
8 The common pins were mistakenly not added to the DAPM graph.
9 Adding these pins will allow valid graphs to be created.
10
11 Signed-off-by: Annaliese McDermond <nh6z@nh6z.net>
12 Signed-off-by: Mark Brown <broonie@kernel.org>
13 Signed-off-by: Sasha Levin <sashal@kernel.org>
14 ---
15 sound/soc/codecs/tlv320aic32x4.c | 2 ++
16 1 file changed, 2 insertions(+)
17
18 diff --git a/sound/soc/codecs/tlv320aic32x4.c b/sound/soc/codecs/tlv320aic32x4.c
19 index f2d3191961e14..714bd0e3fc71e 100644
20 --- a/sound/soc/codecs/tlv320aic32x4.c
21 +++ b/sound/soc/codecs/tlv320aic32x4.c
22 @@ -234,6 +234,8 @@ static const struct snd_soc_dapm_widget aic32x4_dapm_widgets[] = {
23 SND_SOC_DAPM_INPUT("IN2_R"),
24 SND_SOC_DAPM_INPUT("IN3_L"),
25 SND_SOC_DAPM_INPUT("IN3_R"),
26 + SND_SOC_DAPM_INPUT("CM_L"),
27 + SND_SOC_DAPM_INPUT("CM_R"),
28 };
29
30 static const struct snd_soc_dapm_route aic32x4_dapm_routes[] = {
31 --
32 2.20.1
33