提交 37c1b927 编写于 作者: F Fabio Baltieri 提交者: Mark Brown

ASoC: dapm: use clk_prepare_enable and clk_disable_unprepare

Update dapm_clock_event to use clk_prepare_enable and
clk_disable_unprepare.
Signed-off-by: NFabio Baltieri <fabio.baltieri@linaro.org>
Signed-off-by: NMark Brown <broonie@opensource.wolfsonmicro.com>
上级 c1be5a5b
...@@ -1070,9 +1070,9 @@ int dapm_clock_event(struct snd_soc_dapm_widget *w, ...@@ -1070,9 +1070,9 @@ int dapm_clock_event(struct snd_soc_dapm_widget *w,
#ifdef CONFIG_HAVE_CLK #ifdef CONFIG_HAVE_CLK
if (SND_SOC_DAPM_EVENT_ON(event)) { if (SND_SOC_DAPM_EVENT_ON(event)) {
return clk_enable(w->clk); return clk_prepare_enable(w->clk);
} else { } else {
clk_disable(w->clk); clk_disable_unprepare(w->clk);
return 0; return 0;
} }
#endif #endif
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册