]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
ASoC: wm8996: Fix wrong mask for setting WM8996_AIF_CLOCKING_2
authorAxel Lin <axel.lin@gmail.com>
Fri, 21 Oct 2011 02:44:07 +0000 (10:44 +0800)
committerGreg Kroah-Hartman <gregkh@suse.de>
Fri, 11 Nov 2011 17:43:18 +0000 (09:43 -0800)
commit 3205e6629bc0eb747fb7d1b4b8fec00b7b919e58 upstream.

Signed-off-by: Axel Lin <axel.lin@gmail.com>
Acked-by: Liam Girdwood <lrg@ti.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
sound/soc/codecs/wm8996.c

index 0cdb9d1056712df48689c47eba7fa440fb73debe..c9c4e5c5949455d44aa3b437c3eb70dc59505cfa 100644 (file)
@@ -1847,7 +1847,7 @@ static int wm8996_hw_params(struct snd_pcm_substream *substream,
        snd_soc_update_bits(codec, lrclk_reg, WM8996_AIF1RX_RATE_MASK,
                            lrclk);
        snd_soc_update_bits(codec, WM8996_AIF_CLOCKING_2,
-                           WM8996_DSP1_DIV_SHIFT << dsp_shift, dsp);
+                           WM8996_DSP1_DIV_MASK << dsp_shift, dsp);
 
        return 0;
 }