aboutsummaryrefslogtreecommitdiffstats
path: root/sound
diff options
context:
space:
mode:
authorMark Brown <broonie@opensource.wolfsonmicro.com>2009-04-21 12:35:15 +0100
committerMark Brown <broonie@opensource.wolfsonmicro.com>2009-04-21 16:18:01 +0100
commitce88168f5b5eca7f40394fa6b05ae29f4b685569 (patch)
treeb6d18a705402bdbfbb194c8576b4917fa96179b9 /sound
parentASoC: Fix warning in wm9705 (diff)
downloadlinux-dev-ce88168f5b5eca7f40394fa6b05ae29f4b685569.tar.xz
linux-dev-ce88168f5b5eca7f40394fa6b05ae29f4b685569.zip
ASoC: Fix offset of freqmode in WM8580 PLL configuration
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com> Cc: stable@kernel.org
Diffstat (limited to 'sound')
-rw-r--r--sound/soc/codecs/wm8580.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/wm8580.c b/sound/soc/codecs/wm8580.c
index 442ea6f160fc..41aab4a7a254 100644
--- a/sound/soc/codecs/wm8580.c
+++ b/sound/soc/codecs/wm8580.c
@@ -522,7 +522,7 @@ static int wm8580_set_dai_pll(struct snd_soc_dai *codec_dai,
reg = wm8580_read(codec, WM8580_PLLA4 + offset);
reg &= ~0x3f;
reg |= pll_div.prescale | pll_div.postscale << 1 |
- pll_div.freqmode << 4;
+ pll_div.freqmode << 3;
wm8580_write(codec, WM8580_PLLA4 + offset, reg);