]> git.openfabrics.org - ~emulex/infiniband.git/commitdiff
ASoC: wm8940: Fix a typo for the mask of setting WM8940_BCLKDIV
authorAxel Lin <axel.lin@gmail.com>
Mon, 24 Oct 2011 03:33:55 +0000 (11:33 +0800)
committerMark Brown <broonie@opensource.wolfsonmicro.com>
Mon, 24 Oct 2011 12:09:50 +0000 (14:09 +0200)
The registers are 16 bits, thus remove an extra F for the mask.

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>
sound/soc/codecs/wm8940.c

index 3cc3bce61316a52f20b5b897e11518d30d4a9b92..fec3892b234c7d0aebc5921afba7fc8d38d06ff6 100644 (file)
@@ -619,7 +619,7 @@ static int wm8940_set_dai_clkdiv(struct snd_soc_dai *codec_dai,
 
        switch (div_id) {
        case WM8940_BCLKDIV:
-               reg = snd_soc_read(codec, WM8940_CLOCK) & 0xFFEF3;
+               reg = snd_soc_read(codec, WM8940_CLOCK) & 0xFEF3;
                ret = snd_soc_write(codec, WM8940_CLOCK, reg | (div << 2));
                break;
        case WM8940_MCLKDIV: