diff options
author | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2017-05-19 03:57:44 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2017-05-19 19:26:48 +0300 |
commit | c73df77d72de28ad72973d3c3103a5361e1440fb (patch) | |
tree | e71341fee9cdf7559ec8bf05f12ccf26ef222e95 | |
parent | c6d112e442fed7b471a7a2fcedea529622f9ec3a (diff) | |
download | linux-c73df77d72de28ad72973d3c3103a5361e1440fb.tar.xz |
ASoC: simple-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/simple-scu-card.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sound/soc/generic/simple-scu-card.c b/sound/soc/generic/simple-scu-card.c index dcbcab230d1b..9b9b01e12149 100644 --- a/sound/soc/generic/simple-scu-card.c +++ b/sound/soc/generic/simple-scu-card.c @@ -298,8 +298,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); |