Commit 81192ef6 authored by Wei Yongjun's avatar Wei Yongjun Committed by Luis Henriques

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

BugLink: http://bugs.launchpad.net/bugs/1638267

commit 8ae3ea48 upstream.

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>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: default avatarTim Gardner <tim.gardner@canonical.com>
parent f4e07d9b
...@@ -1484,6 +1484,7 @@ static int soc_tplg_dapm_widget_create(struct soc_tplg *tplg, ...@@ -1484,6 +1484,7 @@ static int soc_tplg_dapm_widget_create(struct soc_tplg *tplg,
if (widget == NULL) { if (widget == NULL) {
dev_err(tplg->dev, "ASoC: failed to create widget %s controls\n", dev_err(tplg->dev, "ASoC: failed to create widget %s controls\n",
w->name); w->name);
ret = -ENOMEM;
goto hdr_err; goto hdr_err;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment