All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] mmc: cavium-octeon: Add of_node_put() when breaking out of loop
@ 2022-07-19  9:52 Liang He
  2022-07-19  9:52 ` [PATCH 2/2] mmc: cavium-thunderx: " Liang He
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Liang He @ 2022-07-19  9:52 UTC (permalink / raw)
  To: rric, ulf.hansson, linux-mmc, windhl

In octeon_mmc_probe(), we should call of_node_put() when breaking
out of for_each_child_of_node() which has increased and decreased
the refcount during each iteration.

Fixes: 01d95843335c ("mmc: cavium: Add MMC support for Octeon SOCs.")
Signed-off-by: Liang He <windhl@126.com>
---
 drivers/mmc/host/cavium-octeon.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/mmc/host/cavium-octeon.c b/drivers/mmc/host/cavium-octeon.c
index 2c4b2df52adb..12dca91a8ef6 100644
--- a/drivers/mmc/host/cavium-octeon.c
+++ b/drivers/mmc/host/cavium-octeon.c
@@ -277,6 +277,7 @@ static int octeon_mmc_probe(struct platform_device *pdev)
 		if (ret) {
 			dev_err(&pdev->dev, "Error populating slots\n");
 			octeon_mmc_set_shared_power(host, 0);
+			of_node_put(cn);
 			goto error;
 		}
 		i++;
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2022-07-21 16:14 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-07-19  9:52 [PATCH 1/2] mmc: cavium-octeon: Add of_node_put() when breaking out of loop Liang He
2022-07-19  9:52 ` [PATCH 2/2] mmc: cavium-thunderx: " Liang He
2022-07-20 11:35   ` Robert Richter
2022-07-21 16:13   ` Ulf Hansson
2022-07-20 11:35 ` [PATCH 1/2] mmc: cavium-octeon: " Robert Richter
2022-07-21 16:13 ` Ulf Hansson

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.