Skip to content

Commit

Permalink
ASoC: SOF: sof-audio: unprepare when swidget->use_count > 0
Browse files Browse the repository at this point in the history
We should unprepare the widget if its use_count = 1.

Fixes: 9862dcf ("ASoC: SOF: don't unprepare widget used other pipelines")
Cc: <[email protected]> # 6.1
Signed-off-by: Bard Liao <[email protected]>
Reviewed-by: Ranjani Sridharan <[email protected]>
Reviewed-by: Pierre-Louis Bossart <[email protected]>
Reviewed-by: Rander Wang <[email protected]>
Signed-off-by: Peter Ujfalusi <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Mark Brown <[email protected]>
bardliao authored and broonie committed Jan 18, 2023
1 parent f89d783 commit 7d2a67e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sound/soc/sof/sof-audio.c
Original file line number Diff line number Diff line change
@@ -272,7 +272,7 @@ sof_unprepare_widgets_in_path(struct snd_sof_dev *sdev, struct snd_soc_dapm_widg
struct snd_soc_dapm_path *p;

/* return if the widget is in use or if it is already unprepared */
if (!swidget->prepared || swidget->use_count > 1)
if (!swidget->prepared || swidget->use_count > 0)
return;

if (widget_ops[widget->id].ipc_unprepare)

0 comments on commit 7d2a67e

Please sign in to comment.