From: Axel Lin Date: Mon, 24 Oct 2011 03:33:55 +0000 (+0800) Subject: ASoC: wm8940: Fix a typo for the mask of setting WM8940_BCLKDIV X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=bdb527e9ae038d76917a999108176c5f5be5e35e;p=linux-beck.git ASoC: wm8940: Fix a typo for the mask of setting WM8940_BCLKDIV The registers are 16 bits, thus remove an extra F for the mask. Signed-off-by: Axel Lin Acked-by: Liam Girdwood Signed-off-by: Mark Brown --- diff --git a/sound/soc/codecs/wm8940.c b/sound/soc/codecs/wm8940.c index 3cc3bce61316..fec3892b234c 100644 --- a/sound/soc/codecs/wm8940.c +++ b/sound/soc/codecs/wm8940.c @@ -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: