linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v3] drivers: clk: Add missing of_node_put()
@ 2022-06-16 12:54 Liang He
  2022-06-17  0:09 ` Stephen Boyd
  0 siblings, 1 reply; 3+ messages in thread
From: Liang He @ 2022-06-16 12:54 UTC (permalink / raw)
  To: pdeschrijver, pgaikwad, sboyd, thierry.reding, jonathanh
  Cc: windhl, linux-clk, linux-kernel

In these clk-related drivers' xxx_init() funcitons, of_find_matching_node()
will 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:

 v3: merge clk 'missing of_node_put()' patches into one commit.
 v2: use Liang He as real name for S-o-b.
 v1: fix the missing of_node_put().


 drivers/clk/clk-nomadik.c        | 5 ++++-
 drivers/clk/tegra/clk-tegra124.c | 1 +
 drivers/clk/tegra/clk-tegra30.c  | 1 +
 3 files changed, 6 insertions(+), 1 deletion(-)

diff --git a/drivers/clk/clk-nomadik.c b/drivers/clk/clk-nomadik.c
index bad2677e11ae..71fbe687fa7b 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);
+
+out_put:
+	of_node_put(np);
 }
 
 /**
diff --git a/drivers/clk/tegra/clk-tegra124.c b/drivers/clk/tegra/clk-tegra124.c
index 934520aab6e3..a9d4efcef2d4 100644
--- a/drivers/clk/tegra/clk-tegra124.c
+++ b/drivers/clk/tegra/clk-tegra124.c
@@ -1471,6 +1471,7 @@ static void __init tegra124_132_clock_init_pre(struct device_node *np)
 	}
 
 	pmc_base = of_iomap(node, 0);
+	of_node_put(node);
 	if (!pmc_base) {
 		pr_err("Can't map pmc registers\n");
 		WARN_ON(1);
diff --git a/drivers/clk/tegra/clk-tegra30.c b/drivers/clk/tegra/clk-tegra30.c
index 04b496123820..168c07d5a5f2 100644
--- a/drivers/clk/tegra/clk-tegra30.c
+++ b/drivers/clk/tegra/clk-tegra30.c
@@ -1320,6 +1320,7 @@ static void __init tegra30_clock_init(struct device_node *np)
 	}
 
 	pmc_base = of_iomap(node, 0);
+	of_node_put(node);
 	if (!pmc_base) {
 		pr_err("Can't map pmc registers\n");
 		BUG();
-- 
2.25.1


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

* Re: [PATCH v3] drivers: clk: Add missing of_node_put()
  2022-06-16 12:54 [PATCH v3] drivers: clk: Add missing of_node_put() Liang He
@ 2022-06-17  0:09 ` Stephen Boyd
  2022-06-17  1:20   ` Liang He
  0 siblings, 1 reply; 3+ messages in thread
From: Stephen Boyd @ 2022-06-17  0:09 UTC (permalink / raw)
  To: Liang He, jonathanh, pdeschrijver, pgaikwad, thierry.reding
  Cc: windhl, linux-clk, linux-kernel

Quoting Liang He (2022-06-16 05:54:09)
> In these clk-related drivers' xxx_init() funcitons, of_find_matching_node()
> will 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:
> 
>  v3: merge clk 'missing of_node_put()' patches into one commit.
>  v2: use Liang He as real name for S-o-b.
>  v1: fix the missing of_node_put().
> 
> 
>  drivers/clk/clk-nomadik.c        | 5 ++++-
>  drivers/clk/tegra/clk-tegra124.c | 1 +
>  drivers/clk/tegra/clk-tegra30.c  | 1 +

Please split into a tegra patch and a nomadik patch.

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

* Re:Re: [PATCH v3] drivers: clk: Add missing of_node_put()
  2022-06-17  0:09 ` Stephen Boyd
@ 2022-06-17  1:20   ` Liang He
  0 siblings, 0 replies; 3+ messages in thread
From: Liang He @ 2022-06-17  1:20 UTC (permalink / raw)
  To: Stephen Boyd
  Cc: jonathanh, pdeschrijver, pgaikwad, thierry.reding, linux-clk,
	linux-kernel



At 2022-06-17 08:09:11, "Stephen Boyd" <sboyd@kernel.org> wrote:
>Quoting Liang He (2022-06-16 05:54:09)
>> In these clk-related drivers' xxx_init() funcitons, of_find_matching_node()
>> will 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:
>> 
>>  v3: merge clk 'missing of_node_put()' patches into one commit.
>>  v2: use Liang He as real name for S-o-b.
>>  v1: fix the missing of_node_put().
>> 
>> 
>>  drivers/clk/clk-nomadik.c        | 5 ++++-
>>  drivers/clk/tegra/clk-tegra124.c | 1 +
>>  drivers/clk/tegra/clk-tegra30.c  | 1 +
>
>Please split into a tegra patch and a nomadik patch.

Thanks, I will split them and resend soon.

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

end of thread, other threads:[~2022-06-17  1:20 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-06-16 12:54 [PATCH v3] drivers: clk: Add missing of_node_put() Liang He
2022-06-17  0:09 ` Stephen Boyd
2022-06-17  1:20   ` Liang He

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).