diff options
author | Bard Liao <bardliao@realtek.com> | 2016-01-21 00:13:40 -0500 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2016-01-21 06:09:54 -0500 |
commit | b28785fa9cede0d4f47310ca0dd2a4e1d50478b5 (patch) | |
tree | 2e8ee52c80700f7ca45c0aa378e150bec3fa7036 | |
parent | 8005c49d9aea74d382f474ce11afbbc7d7130bec (diff) |
ASoC: rt5645: fix the shift bit of IN1 boost
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
-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 28132375e427..c916c3881259 100644 --- a/sound/soc/codecs/rt5645.c +++ b/sound/soc/codecs/rt5645.c | |||
@@ -600,7 +600,7 @@ static const struct snd_kcontrol_new rt5645_snd_controls[] = { | |||
600 | 600 | ||
601 | /* IN1/IN2 Control */ | 601 | /* IN1/IN2 Control */ |
602 | SOC_SINGLE_TLV("IN1 Boost", RT5645_IN1_CTRL1, | 602 | SOC_SINGLE_TLV("IN1 Boost", RT5645_IN1_CTRL1, |
603 | RT5645_BST_SFT1, 8, 0, bst_tlv), | 603 | RT5645_BST_SFT1, 12, 0, bst_tlv), |
604 | SOC_SINGLE_TLV("IN2 Boost", RT5645_IN2_CTRL, | 604 | SOC_SINGLE_TLV("IN2 Boost", RT5645_IN2_CTRL, |
605 | RT5645_BST_SFT2, 8, 0, bst_tlv), | 605 | RT5645_BST_SFT2, 8, 0, bst_tlv), |
606 | 606 | ||