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

Commit 8ae3ea48 authored by Wei Yongjun's avatar Wei Yongjun Committed by Mark Brown
Browse files

ASoC: topology: Fix error return code in soc_tplg_dapm_widget_create()



Fix to return error code -ENOMEM instead of 0 when failed to create
widget, as done elsewhere in this function.

Fixes: 8a978234 ("ASoC: topology: Add topology core")
Signed-off-by: default avatarWei Yongjun <weiyj.lk@gmail.com>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent 0038be9a
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -1476,6 +1476,7 @@ static int soc_tplg_dapm_widget_create(struct soc_tplg *tplg,
	if (widget == NULL) {
		dev_err(tplg->dev, "ASoC: failed to create widget %s controls\n",
			w->name);
		ret = -ENOMEM;
		goto hdr_err;
	}