Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1712a5d8 authored by Tero Kristo's avatar Tero Kristo Committed by Greg Kroah-Hartman
Browse files

clk: ti: clockdomain: fix static checker warning



[ Upstream commit b7a7943fe291b983b104bcbd2f16e8e896f56590 ]

Fix a memory leak induced by not calling clk_put after doing of_clk_get.

Reported-by: default avatarDan Murphy <dmurphy@ti.com>
Signed-off-by: default avatarTero Kristo <t-kristo@ti.com>
Link: https://lore.kernel.org/r/20200907082600.454-3-t-kristo@ti.com


Signed-off-by: default avatarStephen Boyd <sboyd@kernel.org>
Signed-off-by: default avatarSasha Levin <sashal@kernel.org>
parent fe5fe1ec
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -146,10 +146,12 @@ static void __init of_ti_clockdomain_setup(struct device_node *node)
		if (clk_hw_get_flags(clk_hw) & CLK_IS_BASIC) {
			pr_warn("can't setup clkdm for basic clk %s\n",
				__clk_get_name(clk));
			clk_put(clk);
			continue;
		}
		to_clk_hw_omap(clk_hw)->clkdm_name = clkdm_name;
		omap2_init_clk_clkdm(clk_hw);
		clk_put(clk);
	}
}