Re: [PATCH 2/3] ASoC: wm8940: Fix a typo for the mask of setting WM8940_BCLKDIV

From: Girdwood, Liam
Date: Mon Oct 24 2011 - 08:06:36 EST


On 24 October 2011 04:33, Axel Lin <axel.lin@xxxxxxxxx> wrote:
> The registers are 16 bits, thus remove an extra F for the mask.
>
> Signed-off-by: Axel Lin <axel.lin@xxxxxxxxx>
> ---
> Âsound/soc/codecs/wm8940.c | Â Â2 +-
> Â1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/sound/soc/codecs/wm8940.c b/sound/soc/codecs/wm8940.c
> index 3cc3bce..fec3892 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:
> --

Acked-by: Liam Girdwood <lrg@xxxxxx>
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/