From: Kuninori Morimoto Date: Fri, 19 May 2017 00:57:21 +0000 (+0000) Subject: ASoC: simple-card: tidyup return method from probe() X-Git-Tag: v4.14-rc4~21^2~60^2~4^2~31 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c6d112e442fed7b471a7a2fcedea529622f9ec3a;p=platform%2Fkernel%2Flinux-rpi.git ASoC: simple-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-card.c b/sound/soc/generic/simple-card.c index 2c9deda..4dacaf7 100644 --- a/sound/soc/generic/simple-card.c +++ b/sound/soc/generic/simple-card.c @@ -497,8 +497,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);