diff options
author | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2017-05-19 00:57:21 +0000 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2017-05-19 17:26:48 +0100 |
commit | c6d112e442fed7b471a7a2fcedea529622f9ec3a (patch) | |
tree | 819a8c0717c68c43bb6a6b9ad7a8f5402ee38f2a | |
parent | 374503c6109e60f48fa9b11341b14466f07bd3f4 (diff) | |
download | linux-c6d112e442fed7b471a7a2fcedea529622f9ec3a.tar.bz2 |
ASoC: simple-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-card.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sound/soc/generic/simple-card.c b/sound/soc/generic/simple-card.c index 2c9dedab5184..4dacaf78a0de 100644 --- a/sound/soc/generic/simple-card.c +++ b/sound/soc/generic/simple-card.c @@ -497,8 +497,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); |