aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/clk/imx/clk-imx8mm.c
diff options
context:
space:
mode:
authorAnson Huang <Anson.Huang@nxp.com>2020-02-12 19:57:35 +0800
committerShawn Guo <shawnguo@kernel.org>2020-02-17 14:37:49 +0800
commit5062d46e2698e720f866c06563419bff09dcacb4 (patch)
tree73dd57b263778478816ca5e17e385610585ff83e /drivers/clk/imx/clk-imx8mm.c
parentclk: imx8mq: Add missing of_node_put() (diff)
downloadlinux-dev-5062d46e2698e720f866c06563419bff09dcacb4.tar.xz
linux-dev-5062d46e2698e720f866c06563419bff09dcacb4.zip
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/imx/clk-imx8mm.c')
-rw-r--r--drivers/clk/imx/clk-imx8mm.c1
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;