ASoC: soc-core: remove unneeded dai_link check from snd_soc_remove_dai_link()
snd_soc_remove_dai_link() has card connected dai_link check. but 1) we need to call list_del() anyway, because it is "remove" function, 2) It is doing many thing for this card / dai_link already before checking dai_link. This patch removes poinless dai_link check Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> Reviewed-by: Ranjani Sridharan <ranjani.sridharan@linux.intel.com> Link: https://lore.kernel.org/r/875zms1ldm.wl-kuninori.morimoto.gx@renesas.com Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
b03bfaec1d
commit
c26a884111
@ -1182,8 +1182,6 @@ EXPORT_SYMBOL_GPL(snd_soc_add_dai_link);
|
||||
void snd_soc_remove_dai_link(struct snd_soc_card *card,
|
||||
struct snd_soc_dai_link *dai_link)
|
||||
{
|
||||
struct snd_soc_dai_link *link, *_link;
|
||||
|
||||
if (dai_link->dobj.type
|
||||
&& dai_link->dobj.type != SND_SOC_DOBJ_DAI_LINK) {
|
||||
dev_err(card->dev, "Invalid dai link type %d\n",
|
||||
@ -1199,12 +1197,7 @@ void snd_soc_remove_dai_link(struct snd_soc_card *card,
|
||||
if (dai_link->dobj.type && card->remove_dai_link)
|
||||
card->remove_dai_link(card, dai_link);
|
||||
|
||||
for_each_card_links_safe(card, link, _link) {
|
||||
if (link == dai_link) {
|
||||
list_del(&link->list);
|
||||
return;
|
||||
}
|
||||
}
|
||||
list_del(&dai_link->list);
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(snd_soc_remove_dai_link);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user