diff options
author | Anson Huang <[email protected]> | 2020-02-12 19:57:37 +0800 |
---|---|---|
committer | Shawn Guo <[email protected]> | 2020-02-17 14:37:54 +0800 |
commit | 680fbce528169eaadf621066a4925794e2addbd7 (patch) | |
tree | fd073d279600be1afa1a2fddf8c7dc9c6b31b7e1 | |
parent | d93171b54cb44e65c1ec5462c17704b51b8afc27 (diff) |
clk: imx8mp: Add missing of_node_put()
After finishing using device node got from of_find_compatible_node(),
of_node_put() needs to be called.
Signed-off-by: Anson Huang <[email protected]>
Reviewed-by: Stephen Boyd <[email protected]>
Signed-off-by: Shawn Guo <[email protected]>
-rw-r--r-- | drivers/clk/imx/clk-imx8mp.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/clk/imx/clk-imx8mp.c b/drivers/clk/imx/clk-imx8mp.c index ee83aa2162d9..a16af4fce044 100644 --- a/drivers/clk/imx/clk-imx8mp.c +++ b/drivers/clk/imx/clk-imx8mp.c @@ -434,6 +434,7 @@ static int imx8mp_clocks_probe(struct platform_device *pdev) np = of_find_compatible_node(NULL, NULL, "fsl,imx8mp-anatop"); anatop_base = of_iomap(np, 0); + of_node_put(np); if (WARN_ON(!anatop_base)) return -ENOMEM; |