Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 30abbe77 authored by Lars-Peter Clausen's avatar Lars-Peter Clausen Committed by Mark Brown
Browse files

ASoC: dapm: dapm_dai_get_connected_widgets: Fix missing mutex unlock



Make sure to unlock the DAPM mutex when dapm_widget_list_create() fails.

This means the function will now generate a trace_snd_soc_dapm_connected
event, even if the creation of the list fails. But that was the behavior
before the patch that introduced the unlock issue, so that should be fine.

Fixes: 1ce43acf ("ASoC: dapm: Simplify list creation in dapm_dai_get_connected_widgets()")
Reported-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: default avatarLars-Peter Clausen <lars@metafoo.de>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent e63bfd45
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -1191,7 +1191,7 @@ int snd_soc_dapm_dai_get_connected_widgets(struct snd_soc_dai *dai, int stream,


	ret = dapm_widget_list_create(list, &widgets);
	ret = dapm_widget_list_create(list, &widgets);
	if (ret)
	if (ret)
		return ret;
		paths = ret;


	trace_snd_soc_dapm_connected(paths, stream);
	trace_snd_soc_dapm_connected(paths, stream);
	mutex_unlock(&card->dapm_mutex);
	mutex_unlock(&card->dapm_mutex);