mirror of
https://github.com/edk2-porting/linux-next.git
synced 2025-01-04 11:43:54 +08:00
ASoC: soc-core: Merge for_each_rtd_cpu/codec_dais()
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>
This commit is contained in:
parent
22a2fc8165
commit
3af6ff5035
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user