Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit bdb527e9 authored by Axel Lin's avatar Axel Lin Committed by Mark Brown
Browse files

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: default avatarAxel Lin <axel.lin@gmail.com>
Acked-by: default avatarLiam Girdwood <lrg@ti.com>
Signed-off-by: default avatarMark Brown <broonie@opensource.wolfsonmicro.com>
parent 49fa4d9b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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: