projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2692c1c
)
ASoC: audio-graph-card: tidyup return method from probe()
author
Kuninori Morimoto
<
[email protected]
>
Fri, 19 May 2017 00:58:00 +0000
(
00:58
+0000)
committer
Mark Brown
<
[email protected]
>
Fri, 19 May 2017 16:28:18 +0000
(17:28 +0100)
Current return method from probe() is very confusable.
This patch tidyup it to normal return method
Reported-by: Dan Carpenter <
[email protected]
>
Signed-off-by: Kuninori Morimoto <
[email protected]
>
Signed-off-by: Mark Brown <
[email protected]
>
sound/soc/generic/audio-graph-card.c
patch
|
blob
|
history
diff --git
a/sound/soc/generic/audio-graph-card.c
b/sound/soc/generic/audio-graph-card.c
index 07e010d385962b0203715b2b572d97cfb60ba838..f41b0393ffca4bdd4183032cbc440c3d42842054 100644
(file)
--- 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)
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);