[alsa-devel] [PATCH 2/3] ASoC: wm8940: Fix a typo for the mask of setting WM8940_BCLKDIV
Girdwood, Liam
lrg at ti.com
Mon Oct 24 14:06:34 CEST 2011
On 24 October 2011 04:33, Axel Lin <axel.lin at gmail.com> wrote:
> The registers are 16 bits, thus remove an extra F for the mask.
>
> Signed-off-by: Axel Lin <axel.lin at gmail.com>
> ---
> 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 at ti.com>
More information about the Alsa-devel
mailing list