mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-02 18:56:44 +07:00
ASoC: Suppress noop SYSCLK updates in WM8915
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com> Acked-by: Liam Girdwood <lrg@ti.com>
This commit is contained in:
parent
84abd1b395
commit
ea7b437836
@ -55,6 +55,7 @@ struct wm8915_priv {
|
||||
int ldo1ena;
|
||||
|
||||
int sysclk;
|
||||
int sysclk_src;
|
||||
|
||||
int fll_src;
|
||||
int fll_fref;
|
||||
@ -1834,6 +1835,9 @@ static int wm8915_set_sysclk(struct snd_soc_dai *dai,
|
||||
int src;
|
||||
int old;
|
||||
|
||||
if (freq == wm8915->sysclk && clk_id == wm8915->sysclk_src)
|
||||
return 0;
|
||||
|
||||
/* Disable SYSCLK while we reconfigure */
|
||||
old = snd_soc_read(codec, WM8915_AIF_CLOCKING_1) & WM8915_SYSCLK_ENA;
|
||||
snd_soc_update_bits(codec, WM8915_AIF_CLOCKING_1,
|
||||
@ -1885,6 +1889,8 @@ static int wm8915_set_sysclk(struct snd_soc_dai *dai,
|
||||
snd_soc_update_bits(codec, WM8915_AIF_CLOCKING_1,
|
||||
WM8915_SYSCLK_ENA, old);
|
||||
|
||||
wm8915->sysclk_src = clk_id;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user