aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/sound/soc/generic
diff options
context:
space:
mode:
authorKuninori Morimoto <kuninori.morimoto.gx@renesas.com>2017-05-19 00:57:44 +0000
committerMark Brown <broonie@kernel.org>2017-05-19 17:26:48 +0100
commitc73df77d72de28ad72973d3c3103a5361e1440fb (patch)
treee71341fee9cdf7559ec8bf05f12ccf26ef222e95 /sound/soc/generic
parentASoC: simple-card: tidyup return method from probe() (diff)
downloadwireguard-linux-c73df77d72de28ad72973d3c3103a5361e1440fb.tar.xz
wireguard-linux-c73df77d72de28ad72973d3c3103a5361e1440fb.zip
ASoC: simple-scu-card: tidyup return method from probe()
Current return method from probe() is very confusable. This patch tidyup it to normal return method Reported-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/generic')
-rw-r--r--sound/soc/generic/simple-scu-card.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/sound/soc/generic/simple-scu-card.c b/sound/soc/generic/simple-scu-card.c
index dcbcab230d1b..9b9b01e12149 100644
--- a/sound/soc/generic/simple-scu-card.c
+++ b/sound/soc/generic/simple-scu-card.c
@@ -298,8 +298,10 @@ static int asoc_simple_card_probe(struct platform_device *pdev)
snd_soc_card_set_drvdata(card, priv);
ret = devm_snd_soc_register_card(dev, card);
- if (ret >= 0)
- return ret;
+ if (ret < 0)
+ goto err;
+
+ return 0;
err:
asoc_simple_card_clean_reference(card);