diff options
author | Bard Liao <bardliao@realtek.com> | 2016-01-21 13:13:40 +0800 |
---|---|---|
committer | Sasha Levin <sasha.levin@oracle.com> | 2016-02-27 18:15:36 -0500 |
commit | 09306d2b4b0f0f762c6ff135869758ed493f991d (patch) | |
tree | fbde49ea083b4ad3706a137b1eeb360a7971dd67 /sound | |
parent | 2729a0fa0a8fb038fc6af45afe829b77e532432f (diff) | |
download | lwn-09306d2b4b0f0f762c6ff135869758ed493f991d.tar.gz lwn-09306d2b4b0f0f762c6ff135869758ed493f991d.zip |
ASoC: rt5645: fix the shift bit of IN1 boost
[ Upstream commit b28785fa9cede0d4f47310ca0dd2a4e1d50478b5 ]
The shift bit of IN1 boost gain control is 12.
Signed-off-by: Bard Liao <bardliao@realtek.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Cc: stable@vger.kernel.org
Signed-off-by: Sasha Levin <sasha.levin@oracle.com>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/soc/codecs/rt5645.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/rt5645.c b/sound/soc/codecs/rt5645.c index d16331e0b64d..35a27281ed86 100644 --- a/sound/soc/codecs/rt5645.c +++ b/sound/soc/codecs/rt5645.c @@ -474,7 +474,7 @@ static const struct snd_kcontrol_new rt5645_snd_controls[] = { /* IN1/IN2 Control */ SOC_SINGLE_TLV("IN1 Boost", RT5645_IN1_CTRL1, - RT5645_BST_SFT1, 8, 0, bst_tlv), + RT5645_BST_SFT1, 12, 0, bst_tlv), SOC_SINGLE_TLV("IN2 Boost", RT5645_IN2_CTRL, RT5645_BST_SFT2, 8, 0, bst_tlv), |