ASoC: rt5665: fix wrong register for bclk ratio control
The register of setting back ratio should be RT5665_ADDA_CLK_2 instead of RT5665_ADDA_CLK_1. Signed-off-by: Bard Liao <bardliao@realtek.com> Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
b50e2842b2
commit
7e5824c934
|
@ -4368,12 +4368,12 @@ static int rt5665_set_bclk_ratio(struct snd_soc_dai *dai, unsigned int ratio)
|
|||
switch (dai->id) {
|
||||
case RT5665_AIF2_1:
|
||||
case RT5665_AIF2_2:
|
||||
snd_soc_update_bits(codec, RT5665_ADDA_CLK_1,
|
||||
snd_soc_update_bits(codec, RT5665_ADDA_CLK_2,
|
||||
RT5665_I2S_BCLK_MS2_MASK,
|
||||
RT5665_I2S_BCLK_MS2_64);
|
||||
break;
|
||||
case RT5665_AIF3:
|
||||
snd_soc_update_bits(codec, RT5665_ADDA_CLK_1,
|
||||
snd_soc_update_bits(codec, RT5665_ADDA_CLK_2,
|
||||
RT5665_I2S_BCLK_MS3_MASK,
|
||||
RT5665_I2S_BCLK_MS3_64);
|
||||
break;
|
||||
|
|
Loading…
Reference in New Issue