diff options
author | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2017-05-18 20:58:00 -0400 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2017-05-19 12:28:18 -0400 |
commit | ecea931350cedae8ee24abe6a65619f46a3a9c14 (patch) | |
tree | 1d992b5fc768ed5f4314e27c3d75cf0155638bd8 | |
parent | 2692c1c63c29cad3bec090c3e6ed9e692ca66683 (diff) |
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 <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-card.c | 6 |
1 files changed, 4 insertions, 2 deletions
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) | |||
271 | snd_soc_card_set_drvdata(card, priv); | 271 | snd_soc_card_set_drvdata(card, priv); |
272 | 272 | ||
273 | ret = devm_snd_soc_register_card(dev, card); | 273 | ret = devm_snd_soc_register_card(dev, card); |
274 | if (ret >= 0) | 274 | if (ret < 0) |
275 | return ret; | 275 | goto err; |
276 | |||
277 | return 0; | ||
276 | err: | 278 | err: |
277 | asoc_simple_card_clean_reference(card); | 279 | asoc_simple_card_clean_reference(card); |
278 | 280 | ||