]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
ASoC: audio-graph-scu-card: use asoc_simple_card_clk_xxx()
authorKuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Fri, 9 Jun 2017 00:45:01 +0000 (00:45 +0000)
committerMark Brown <broonie@kernel.org>
Tue, 13 Jun 2017 20:57:57 +0000 (21:57 +0100)
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>
sound/soc/generic/audio-graph-scu-card.c

index 0066102f5bc45809b07691d6075143f007ed2dcd..27a261ee73027c04346269a9687a166f8e6a0f66 100644 (file)
@@ -45,7 +45,7 @@ static int asoc_graph_card_startup(struct snd_pcm_substream *substream)
        struct graph_card_data *priv = snd_soc_card_get_drvdata(rtd->card);
        struct asoc_simple_dai *dai_props = graph_priv_to_props(priv, rtd->num);
 
-       return clk_prepare_enable(dai_props->clk);
+       return asoc_simple_card_clk_enable(dai_props);
 }
 
 static void asoc_graph_card_shutdown(struct snd_pcm_substream *substream)
@@ -54,7 +54,7 @@ static void asoc_graph_card_shutdown(struct snd_pcm_substream *substream)
        struct graph_card_data *priv = snd_soc_card_get_drvdata(rtd->card);
        struct asoc_simple_dai *dai_props = graph_priv_to_props(priv, rtd->num);
 
-       clk_disable_unprepare(dai_props->clk);
+       asoc_simple_card_clk_disable(dai_props);
 }
 
 static struct snd_soc_ops asoc_graph_card_ops = {