diff options
author | Puyou Lu <[email protected]> | 2020-07-02 10:30:25 +0800 |
---|---|---|
committer | Mark Brown <[email protected]> | 2020-07-09 19:55:27 +0100 |
commit | 574ea5c80eb18edd0d93864985650efec63347c0 (patch) | |
tree | d6d062d1371edd9228fd714b50aadd0924b8ec5a | |
parent | 37d65a26c9630af5263039dc36bedf878b5680cf (diff) |
ASoC: wm8974: fix Boost Mixer Aux Switch
Clear BIT6 of INPPGA means not muted (Switch On).
Signed-off-by: Puyou Lu <[email protected]>
Acked-by: Charles Keepax <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Mark Brown <[email protected]>
-rw-r--r-- | sound/soc/codecs/wm8974.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/wm8974.c b/sound/soc/codecs/wm8974.c index 06ba36595ddd..764bf93fb58a 100644 --- a/sound/soc/codecs/wm8974.c +++ b/sound/soc/codecs/wm8974.c @@ -186,7 +186,7 @@ SOC_DAPM_SINGLE("PCM Playback Switch", WM8974_MONOMIX, 0, 1, 0), /* Boost mixer */ static const struct snd_kcontrol_new wm8974_boost_mixer[] = { -SOC_DAPM_SINGLE("Aux Switch", WM8974_INPPGA, 6, 1, 0), +SOC_DAPM_SINGLE("Aux Switch", WM8974_INPPGA, 6, 1, 1), }; /* Input PGA */ |