From: Mark Brown Date: Tue, 21 Apr 2009 11:35:15 +0000 (+0100) Subject: ASoC: Fix offset of freqmode in WM8580 PLL configuration X-Git-Tag: v2.6.29.3~36 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=821d31bfd7b23e92b6084e05095b1c7266c56a3f;p=thirdparty%2Fkernel%2Fstable.git ASoC: Fix offset of freqmode in WM8580 PLL configuration commit ce88168f5b5eca7f40394fa6b05ae29f4b685569 upstream. Signed-off-by: Mark Brown Signed-off-by: Greg Kroah-Hartman --- diff --git a/sound/soc/codecs/wm8580.c b/sound/soc/codecs/wm8580.c index d004e5845298d..f3d15d5075ed3 100644 --- a/sound/soc/codecs/wm8580.c +++ b/sound/soc/codecs/wm8580.c @@ -533,7 +533,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);