Commit 12b05232 authored by Kuninori Morimoto's avatar Kuninori Morimoto Committed by Mark Brown

ASoC: soc-core: rename snd_soc_rtdcom_add() to snd_soc_rtd_add_component()

We don't have snd_soc_rtdcom_list anymore.
Let's rename snd_soc_rtdcom_add() to more understandable
snd_soc_rtd_add_component()
Reported-by: default avatarSridharan, Ranjani <ranjani.sridharan@intel.com>
Signed-off-by: default avatarKuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Link: https://lore.kernel.org/r/878smgt4vp.wl-kuninori.morimoto.gx@renesas.comSigned-off-by: default avatarMark Brown <broonie@kernel.org>
parent 7d2a5f9a
...@@ -258,8 +258,8 @@ static inline void snd_soc_debugfs_exit(void) ...@@ -258,8 +258,8 @@ static inline void snd_soc_debugfs_exit(void)
#endif #endif
static int snd_soc_rtdcom_add(struct snd_soc_pcm_runtime *rtd, static int snd_soc_rtd_add_component(struct snd_soc_pcm_runtime *rtd,
struct snd_soc_component *component) struct snd_soc_component *component)
{ {
struct snd_soc_component *comp; struct snd_soc_component *comp;
int i; int i;
...@@ -1035,7 +1035,7 @@ int snd_soc_add_pcm_runtime(struct snd_soc_card *card, ...@@ -1035,7 +1035,7 @@ int snd_soc_add_pcm_runtime(struct snd_soc_card *card,
dai_link->cpus->dai_name); dai_link->cpus->dai_name);
goto _err_defer; goto _err_defer;
} }
snd_soc_rtdcom_add(rtd, rtd->cpu_dai->component); snd_soc_rtd_add_component(rtd, rtd->cpu_dai->component);
/* Find CODEC from registered CODECs */ /* Find CODEC from registered CODECs */
rtd->num_codecs = dai_link->num_codecs; rtd->num_codecs = dai_link->num_codecs;
...@@ -1047,7 +1047,7 @@ int snd_soc_add_pcm_runtime(struct snd_soc_card *card, ...@@ -1047,7 +1047,7 @@ int snd_soc_add_pcm_runtime(struct snd_soc_card *card,
goto _err_defer; goto _err_defer;
} }
snd_soc_rtdcom_add(rtd, rtd->codec_dais[i]->component); snd_soc_rtd_add_component(rtd, rtd->codec_dais[i]->component);
} }
/* Single codec links expect codec and codec_dai in runtime data */ /* Single codec links expect codec and codec_dai in runtime data */
...@@ -1059,7 +1059,7 @@ int snd_soc_add_pcm_runtime(struct snd_soc_card *card, ...@@ -1059,7 +1059,7 @@ int snd_soc_add_pcm_runtime(struct snd_soc_card *card,
if (!snd_soc_is_matching_component(platform, component)) if (!snd_soc_is_matching_component(platform, component))
continue; continue;
snd_soc_rtdcom_add(rtd, component); snd_soc_rtd_add_component(rtd, component);
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment