Unverified Commit cbf4e0fa authored by Peter Ujfalusi's avatar Peter Ujfalusi Committed by Mark Brown
Browse files

ASoC: topology: Do not call snd_soc_remove_pcm_runtime() for ignored links



If a link has been ignored then it is not even added.
The snd_soc_get_pcm_runtime() will return NULL as the runtime will does
not exist.
We can just skip this step to avoid performing a lookup to do nothing.

Signed-off-by: default avatarPeter Ujfalusi <peter.ujfalusi@linux.intel.com>
Reviewed-by: default avatarBard Liao <yung-chuan.liao@linux.intel.com>
Reviewed-by: default avatarRanjani Sridharan <ranjani.sridharan@linux.intel.com>
Reviewed-by: default avatarLiam Girdwood <liam.r.girdwood@intel.com>
Reviewed-by: default avatarKai Vehmanen <kai.vehmanen@linux.intel.com>
Link: https://patch.msgid.link/20250619084222.559-2-peter.ujfalusi@linux.intel.com


Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent d9f38d98
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -429,6 +429,9 @@ static void soc_tplg_remove_link(struct snd_soc_component *comp,
		dobj->unload(comp, dobj);

	list_del(&dobj->list);

	/* Ignored links do not need to be removed, they are not added */
	if (!link->ignore)
		snd_soc_remove_pcm_runtime(comp->card,
				snd_soc_get_pcm_runtime(comp->card, link));
}