diff options
author | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2017-05-18 20:58:19 -0400 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2017-05-29 09:49:10 -0400 |
commit | 1a2af56431781e7d6db746a1b7ae796443028dfa (patch) | |
tree | 343168a3b1b24f94712a275204b73c564907595a | |
parent | 87f937b45f7dacfb09e6f7dddb2db8484dc0e8e3 (diff) |
ASoC: audio-graph-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>
-rw-r--r-- | sound/soc/generic/audio-graph-scu-card.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sound/soc/generic/audio-graph-scu-card.c b/sound/soc/generic/audio-graph-scu-card.c index 64e8b9728580..c5c52d1f500c 100644 --- a/sound/soc/generic/audio-graph-scu-card.c +++ b/sound/soc/generic/audio-graph-scu-card.c | |||
@@ -379,8 +379,10 @@ static int asoc_graph_card_probe(struct platform_device *pdev) | |||
379 | snd_soc_card_set_drvdata(card, priv); | 379 | snd_soc_card_set_drvdata(card, priv); |
380 | 380 | ||
381 | ret = devm_snd_soc_register_card(dev, card); | 381 | ret = devm_snd_soc_register_card(dev, card); |
382 | if (ret >= 0) | 382 | if (ret < 0) |
383 | return ret; | 383 | goto err; |
384 | |||
385 | return 0; | ||
384 | err: | 386 | err: |
385 | asoc_simple_card_clean_reference(card); | 387 | asoc_simple_card_clean_reference(card); |
386 | 388 | ||