Commit c9ec1d8f authored by Yangtao Li's avatar Yangtao Li Committed by Stephen Boyd
Browse files

clk: imx6q: fix refcount leak in imx6q_clocks_init()



The of_find_compatible_node() returns a node pointer with refcount
incremented, but there is the lack of use of the of_node_put() when
done. Add the missing of_node_put() to release the refcount.

Signed-off-by: default avatarYangtao Li <tiny.windzz@gmail.com>
Fixes: 2acd1b6f ("ARM: i.MX6: implement clocks using common clock framework")
Signed-off-by: default avatarStephen Boyd <sboyd@kernel.org>
parent cee82eb9
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -424,6 +424,7 @@ static void __init imx6q_clocks_init(struct device_node *ccm_node)
	np = of_find_compatible_node(NULL, NULL, "fsl,imx6q-anatop");
	anatop_base = base = of_iomap(np, 0);
	WARN_ON(!base);
	of_node_put(np);

	/* Audio/video PLL post dividers do not work on i.MX6q revision 1.0 */
	if (clk_on_imx6q() && imx_get_soc_revision() == IMX_CHIP_REVISION_1_0) {