From: Kuninori Morimoto Date: Fri, 19 May 2017 00:58:00 +0000 (+0000) Subject: ASoC: audio-graph-card: tidyup return method from probe() X-Git-Tag: v4.13-rc1~142^2~1^2~4^2~26^2~5 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=ecea931350cedae8ee24abe6a65619f46a3a9c14;p=karo-tx-linux.git ASoC: audio-graph-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/audio-graph-card.c b/sound/soc/generic/audio-graph-card.c index 07e010d38596..f41b0393ffca 100644 --- a/sound/soc/generic/audio-graph-card.c +++ b/sound/soc/generic/audio-graph-card.c @@ -271,8 +271,10 @@ static int asoc_graph_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);