From: Kuninori Morimoto Date: Fri, 19 May 2017 00:57:44 +0000 (+0000) Subject: ASoC: simple-scu-card: tidyup return method from probe() X-Git-Tag: v4.13-rc1~142^2~1^2~4^2~30 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=c73df77d72de28ad72973d3c3103a5361e1440fb;p=karo-tx-linux.git 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 Signed-off-by: Kuninori Morimoto Signed-off-by: Mark Brown --- 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);