diff mbox series

clk: tegra: Fix refcount leak in tegra114_clock_init

Message ID 20220523143834.7587-1-linmq006@gmail.com (mailing list archive)
State Accepted, archived
Headers show
Series clk: tegra: Fix refcount leak in tegra114_clock_init | expand

Commit Message

Miaoqian Lin May 23, 2022, 2:38 p.m. UTC
of_find_matching_node() returns a node pointer with refcount
incremented, we should use of_node_put() on it when not need anymore.
Add missing of_node_put() to avoid refcount leak.

Fixes: 2cb5efefd6f7 ("clk: tegra: Implement clocks for Tegra114")
Signed-off-by: Miaoqian Lin <linmq006@gmail.com>
---
 drivers/clk/tegra/clk-tegra114.c | 1 +
 1 file changed, 1 insertion(+)

Comments

Stephen Boyd Aug. 23, 2022, 2:05 a.m. UTC | #1
Quoting Miaoqian Lin (2022-05-23 07:38:34)
> of_find_matching_node() returns a node pointer with refcount
> incremented, we should use of_node_put() on it when not need anymore.
> Add missing of_node_put() to avoid refcount leak.
> 
> Fixes: 2cb5efefd6f7 ("clk: tegra: Implement clocks for Tegra114")
> Signed-off-by: Miaoqian Lin <linmq006@gmail.com>
> ---

Applied to clk-next
diff mbox series

Patch

diff --git a/drivers/clk/tegra/clk-tegra114.c b/drivers/clk/tegra/clk-tegra114.c
index ef718c4b3826..f7405a58877e 100644
--- a/drivers/clk/tegra/clk-tegra114.c
+++ b/drivers/clk/tegra/clk-tegra114.c
@@ -1317,6 +1317,7 @@  static void __init tegra114_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");
 		WARN_ON(1);