diff options
author | Dimitris Papastamos <dp@opensource.wolfsonmicro.com> | 2010-12-01 09:38:55 +0000 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2010-12-01 11:26:40 +0000 |
commit | 2062ea522bb58bb2aeee86d051b37136491ccd65 (patch) | |
tree | cfb252e6bffb08e39203e2a79d784c9e1b589267 /sound | |
parent | b76fb39d49f67a484a6adc8f041d9ad833f6860e (diff) | |
download | linux-3.10-2062ea522bb58bb2aeee86d051b37136491ccd65.tar.gz linux-3.10-2062ea522bb58bb2aeee86d051b37136491ccd65.tar.bz2 linux-3.10-2062ea522bb58bb2aeee86d051b37136491ccd65.zip |
ASoC: WM8731: Fix incorrect mask for bypass path disable
According to the datasheet the bypass path enable/disable is
bit 3 therefore we need 0x8 and not 0x4.
Signed-off-by: Dimitris Papastamos <dp@opensource.wolfsonmicro.com>
Acked-by: Liam Girdwood <lrg@slimlogic.co.uk>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/soc/codecs/wm8731.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/wm8731.c b/sound/soc/codecs/wm8731.c index 631385802eb..e725c09a3e7 100644 --- a/sound/soc/codecs/wm8731.c +++ b/sound/soc/codecs/wm8731.c @@ -526,7 +526,7 @@ static int wm8731_probe(struct snd_soc_codec *codec) snd_soc_update_bits(codec, WM8731_RINVOL, 0x100, 0); /* Disable bypass path by default */ - snd_soc_update_bits(codec, WM8731_APANA, 0x4, 0); + snd_soc_update_bits(codec, WM8731_APANA, 0x8, 0); snd_soc_add_controls(codec, wm8731_snd_controls, ARRAY_SIZE(wm8731_snd_controls)); |