summaryrefslogtreecommitdiff
path: root/sound
diff options
context:
space:
mode:
authorJongHo Kim <furmuwon@gmail.com>2015-11-03 11:06:32 +0900
committerNitin Garg <nitin.garg@nxp.com>2016-01-14 11:02:18 -0600
commitc2216342f375aaa430501a6563714e96b823db5c (patch)
tree0dbbd4b1f34079dea3a7665ad31e76957d538453 /sound
parent717be9681494aa0bad0103955347da215fd9554d (diff)
ASoC: wm8960: Fix the Input PGA Mute switch
Change the xinvert value from 0 to 1 on the "Capture Switch" control WM8960 datasheet is shown as follows: Bit 7 at 00h and 01h register address 1 : Enable Mute, 0 : Disable Mute Signed-off-by: JongHo Kim <furmuwon@gmail.com> Acked-by: Charles Keepax <ckeepax@opensource.wolfsonmicro.com> Signed-off-by: Mark Brown <broonie@kernel.org> (cherry picked from commit 41a59cae585678136c28cdcbba9cb2faf27685f5)
Diffstat (limited to 'sound')
-rw-r--r--sound/soc/codecs/wm8960.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/wm8960.c b/sound/soc/codecs/wm8960.c
index 9d512df1838a..fa6ed802b28e 100644
--- a/sound/soc/codecs/wm8960.c
+++ b/sound/soc/codecs/wm8960.c
@@ -229,7 +229,7 @@ SOC_DOUBLE_R_TLV("Capture Volume", WM8960_LINVOL, WM8960_RINVOL,
SOC_DOUBLE_R("Capture Volume ZC Switch", WM8960_LINVOL, WM8960_RINVOL,
6, 1, 0),
SOC_DOUBLE_R("Capture Switch", WM8960_LINVOL, WM8960_RINVOL,
- 7, 1, 0),
+ 7, 1, 1),
SOC_SINGLE_TLV("Right Input Boost Mixer RINPUT3 Volume",
WM8960_INBMIX1, 4, 7, 0, lineinboost_tlv),