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

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

ASoC: wm8996: Fix wrong mask for setting WM8996_AIF_CLOCKING_2



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>
Cc: stable@kernel.org
parent 52082d8f
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -1920,7 +1920,7 @@ static int wm8996_hw_params(struct snd_pcm_substream *substream,
	snd_soc_update_bits(codec, lrclk_reg, WM8996_AIF1RX_RATE_MASK,
	snd_soc_update_bits(codec, lrclk_reg, WM8996_AIF1RX_RATE_MASK,
			    lrclk);
			    lrclk);
	snd_soc_update_bits(codec, WM8996_AIF_CLOCKING_2,
	snd_soc_update_bits(codec, WM8996_AIF_CLOCKING_2,
			    WM8996_DSP1_DIV_SHIFT << dsp_shift, dsp);
			    WM8996_DSP1_DIV_MASK << dsp_shift, dsp);


	return 0;
	return 0;
}
}