public inbox for linux-clk@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] drivers: clk: (clk-nomadik) Add missing of_node_put()
@ 2022-06-16  3:24 Liang He
  2022-06-16  6:02 ` Stephen Boyd
  2022-06-16 14:08 ` kernel test robot
  0 siblings, 2 replies; 5+ messages in thread
From: Liang He @ 2022-06-16  3:24 UTC (permalink / raw)
  To: linus.walleij, mturquette, sboyd
  Cc: linux-arm-kernel, linux-clk, linux-kernel, windhl

In nomadik_src_init, of_find_matching_node() return a node pointer
with refcount incremented. We should use of_node_put() in fail path
or when it is not used anymore.

Signed-off-by: Liang He <windhl@126.com>
---
 changelog: 

 v2: (1) use real name for Sob (2) use goto-label patch style
     (3) use proper subject title
 v1: use two of_node_put() in fail path and normal-return

 drivers/clk/clk-nomadik.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/drivers/clk/clk-nomadik.c b/drivers/clk/clk-nomadik.c
index bad2677e11ae..48d5772b36a5 100644
--- a/drivers/clk/clk-nomadik.c
+++ b/drivers/clk/clk-nomadik.c
@@ -99,7 +99,7 @@ static void __init nomadik_src_init(void)
 	if (!src_base) {
 		pr_err("%s: must have src parent node with REGS (%pOFn)\n",
 		       __func__, np);
-		return;
+		goto out_put;
 	}
 
 	/* Set all timers to use the 2.4 MHz TIMCLK */
@@ -132,6 +132,9 @@ static void __init nomadik_src_init(void)
 	}
 	writel(val, src_base + SRC_XTALCR);
 	register_reboot_notifier(&nomadik_clk_reboot_notifier);
+	
+output:
+    of_node_put(np);	
 }
 
 /**
-- 
2.25.1


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

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

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-06-16  3:24 [PATCH v2] drivers: clk: (clk-nomadik) Add missing of_node_put() Liang He
2022-06-16  6:02 ` Stephen Boyd
2022-06-16  8:24   ` Liang He
2022-06-16 14:08 ` kernel test robot
2022-06-16 14:24   ` Liang He

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox