ASoC: simple-scu-card: use asoc_simple_card_clk_xxx()
Current simple-card-utils sets asoc_simple_dai::clk via asoc_simple_card_parse_clk(). Current simple card drivers are using it directly for clk_enable/disable. Encapsulation is one of simple card util's purpose. Let's use asoc_simple_card_clk_enable/disable. Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
3ab50c4f98
commit
bb24a3ba3f
|
@ -47,7 +47,7 @@ static int asoc_simple_card_startup(struct snd_pcm_substream *substream)
|
||||||
struct asoc_simple_dai *dai_props =
|
struct asoc_simple_dai *dai_props =
|
||||||
simple_priv_to_props(priv, rtd->num);
|
simple_priv_to_props(priv, rtd->num);
|
||||||
|
|
||||||
return clk_prepare_enable(dai_props->clk);
|
return asoc_simple_card_clk_enable(dai_props);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void asoc_simple_card_shutdown(struct snd_pcm_substream *substream)
|
static void asoc_simple_card_shutdown(struct snd_pcm_substream *substream)
|
||||||
|
@ -57,7 +57,7 @@ static void asoc_simple_card_shutdown(struct snd_pcm_substream *substream)
|
||||||
struct asoc_simple_dai *dai_props =
|
struct asoc_simple_dai *dai_props =
|
||||||
simple_priv_to_props(priv, rtd->num);
|
simple_priv_to_props(priv, rtd->num);
|
||||||
|
|
||||||
clk_disable_unprepare(dai_props->clk);
|
asoc_simple_card_clk_disable(dai_props);
|
||||||
}
|
}
|
||||||
|
|
||||||
static const struct snd_soc_ops asoc_simple_card_ops = {
|
static const struct snd_soc_ops asoc_simple_card_ops = {
|
||||||
|
|
Loading…
Reference in New Issue