]> git.ipfire.org Git - thirdparty/kernel/stable-queue.git/blob - releases/4.9.175/asoc-tlv320aic32x4-fix-common-pins.patch
drop xtensa-fix-initialization-of-pt_regs-syscall-in-star.patch from most trees
[thirdparty/kernel/stable-queue.git] / releases / 4.9.175 / asoc-tlv320aic32x4-fix-common-pins.patch
1 From 99225b3fbc24d142cbf098962a4dbdb391ee6060 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 28fdfc5ec5443..c27e3476848a8 100644
20 --- a/sound/soc/codecs/tlv320aic32x4.c
21 +++ b/sound/soc/codecs/tlv320aic32x4.c
22 @@ -316,6 +316,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