diff options
author | Anson Huang <Anson.Huang@nxp.com> | 2020-02-12 19:57:35 +0800 |
---|---|---|
committer | Shawn Guo <shawnguo@kernel.org> | 2020-02-17 14:37:49 +0800 |
commit | 5062d46e2698e720f866c06563419bff09dcacb4 (patch) | |
tree | 73dd57b263778478816ca5e17e385610585ff83e /drivers/clk | |
parent | cb5ae504f2014a66c131920b8eb0ca6b0e6851c6 (diff) | |
download | linux-5062d46e2698e720f866c06563419bff09dcacb4.tar.bz2 |
clk: imx8mm: 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 <Anson.Huang@nxp.com>
Reviewed-by: Stephen Boyd <sboyd@kernel.org>
Signed-off-by: Shawn Guo <shawnguo@kernel.org>
Diffstat (limited to 'drivers/clk')
-rw-r--r-- | drivers/clk/imx/clk-imx8mm.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/clk/imx/clk-imx8mm.c b/drivers/clk/imx/clk-imx8mm.c index 0cba5d4bd51e..2f2c240a86e2 100644 --- a/drivers/clk/imx/clk-imx8mm.c +++ b/drivers/clk/imx/clk-imx8mm.c @@ -324,6 +324,7 @@ static int imx8mm_clocks_probe(struct platform_device *pdev) np = of_find_compatible_node(NULL, NULL, "fsl,imx8mm-anatop"); base = of_iomap(np, 0); + of_node_put(np); if (WARN_ON(!base)) return -ENOMEM; |