[PATCH v2 8/9] ASoC: simple-card: Add missing of_node_put() in case of error

Herve Codina posted 9 patches 2 years, 8 months ago
There is a newer version of this series
[PATCH v2 8/9] ASoC: simple-card: Add missing of_node_put() in case of error
Posted by Herve Codina 2 years, 8 months ago
In the error path, a of_node_put() for platform is missing.
Just add it.

Signed-off-by: Herve Codina <herve.codina@bootlin.com>
---
 sound/soc/generic/simple-card.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sound/soc/generic/simple-card.c b/sound/soc/generic/simple-card.c
index 6f044cc8357e..5a5e4ecd0f61 100644
--- a/sound/soc/generic/simple-card.c
+++ b/sound/soc/generic/simple-card.c
@@ -416,6 +416,7 @@ static int __simple_for_each_link(struct asoc_simple_priv *priv,
 
 			if (ret < 0) {
 				of_node_put(codec);
+				of_node_put(plat);
 				of_node_put(np);
 				goto error;
 			}
-- 
2.40.1
Re: [PATCH v2 8/9] ASoC: simple-card: Add missing of_node_put() in case of error
Posted by Kuninori Morimoto 2 years, 8 months ago
Hi

> In the error path, a of_node_put() for platform is missing.
> Just add it.
> 
> Signed-off-by: Herve Codina <herve.codina@bootlin.com>
> ---

Acked-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>

Thank you for your help !!

Best regards
---
Kuninori Morimoto