diff mbox

[4/4] ASoC: audio-graph-scu-card: tidyup return method from probe()

Message ID 87mva93bw4.wl%kuninori.morimoto.gx@renesas.com (mailing list archive)
State Accepted
Commit 1a2af56431781e7d6db746a1b7ae796443028dfa
Headers show

Commit Message

Kuninori Morimoto May 19, 2017, 12:58 a.m. UTC
From: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>

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>
---
 sound/soc/generic/audio-graph-scu-card.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)
diff mbox

Patch

diff --git a/sound/soc/generic/audio-graph-scu-card.c b/sound/soc/generic/audio-graph-scu-card.c
index 8465ce6..05934b2 100644
--- a/sound/soc/generic/audio-graph-scu-card.c
+++ b/sound/soc/generic/audio-graph-scu-card.c
@@ -350,8 +350,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);