ASoC: soc-core: Merge for_each_rtd_cpu/codec_dais()
authorKuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Mon, 16 Mar 2020 06:37:03 +0000 (15:37 +0900)
committerMark Brown <broonie@kernel.org>
Fri, 20 Mar 2020 20:45:33 +0000 (20:45 +0000)
Now we can use for_each_rtd_dais().
Let's use it instead of for_each_rtd_cpu/codec_dais().

Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Reviewed-by: Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
Reviewed-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Link: https://lore.kernel.org/r/87v9n4olf4.wl-kuninori.morimoto.gx@renesas.com
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/soc-core.c

index 0fd582c..246d599 100644 (file)
@@ -1323,26 +1323,22 @@ static int soc_probe_dai(struct snd_soc_dai *dai, int order)
 static void soc_remove_link_dais(struct snd_soc_card *card)
 {
        int i;
-       struct snd_soc_dai *codec_dai;
-       struct snd_soc_dai *cpu_dai;
+       struct snd_soc_dai *dai;
        struct snd_soc_pcm_runtime *rtd;
        int order;
 
        for_each_comp_order(order) {
                for_each_card_rtds(card, rtd) {
-                       /* remove the CODEC DAI */
-                       for_each_rtd_codec_dais(rtd, i, codec_dai)
-                               soc_remove_dai(codec_dai, order);
-
-                       for_each_rtd_cpu_dais(rtd, i, cpu_dai)
-                               soc_remove_dai(cpu_dai, order);
+                       /* remove DAIs */
+                       for_each_rtd_dais(rtd, i, dai)
+                               soc_remove_dai(dai, order);
                }
        }
 }
 
 static int soc_probe_link_dais(struct snd_soc_card *card)
 {
-       struct snd_soc_dai *codec_dai, *cpu_dai;
+       struct snd_soc_dai *dai;
        struct snd_soc_pcm_runtime *rtd;
        int i, order, ret;
 
@@ -1354,15 +1350,8 @@ static int soc_probe_link_dais(struct snd_soc_card *card)
                                card->name, rtd->num, order);
 
                        /* probe the CPU DAI */
-                       for_each_rtd_cpu_dais(rtd, i, cpu_dai) {
-                               ret = soc_probe_dai(cpu_dai, order);
-                               if (ret)
-                                       return ret;
-                       }
-
-                       /* probe the CODEC DAI */
-                       for_each_rtd_codec_dais(rtd, i, codec_dai) {
-                               ret = soc_probe_dai(codec_dai, order);
+                       for_each_rtd_dais(rtd, i, dai) {
+                               ret = soc_probe_dai(dai, order);
                                if (ret)
                                        return ret;
                        }