Commit 90b76a3c authored by Janusz Krzysztofik's avatar Janusz Krzysztofik Committed by Mark Brown

ASoC: ti: osk5912: Make it CCF clk API compatible

The driver, OMAP1 specific, now omits clk_prepare/unprepare() steps, not
supported by OMAP1 custom implementation of clock API.  However, non-CCF
stubs of those functions exist for use on such platforms until converted
to CCF.

Update the driver to be compatible with CCF implementation of clock API.
Signed-off-by: default avatarJanusz Krzysztofik <jmkrzyszt@gmail.com>
Acked-by: default avatarPeter Ujfalusi <peter.ujfalusi@gmail.com>
Link: https://lore.kernel.org/r/20220407191202.46206-1-jmkrzyszt@gmail.comSigned-off-by: default avatarMark Brown <broonie@kernel.org>
parent c721905c
...@@ -27,12 +27,12 @@ static struct clk *tlv320aic23_mclk; ...@@ -27,12 +27,12 @@ static struct clk *tlv320aic23_mclk;
static int osk_startup(struct snd_pcm_substream *substream) static int osk_startup(struct snd_pcm_substream *substream)
{ {
return clk_enable(tlv320aic23_mclk); return clk_prepare_enable(tlv320aic23_mclk);
} }
static void osk_shutdown(struct snd_pcm_substream *substream) static void osk_shutdown(struct snd_pcm_substream *substream)
{ {
clk_disable(tlv320aic23_mclk); clk_disable_unprepare(tlv320aic23_mclk);
} }
static int osk_hw_params(struct snd_pcm_substream *substream, static int osk_hw_params(struct snd_pcm_substream *substream,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment