Commit d3236214 authored by Matti Vaittinen's avatar Matti Vaittinen Committed by Stephen Boyd
Browse files

clk: clk-st: avoid clkdev lookup leak at remove



Use devm based clkdev lookup registration to avoid leaking lookup
structures.

Signed-off-by: default avatarMatti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
Signed-off-by: default avatarStephen Boyd <sboyd@kernel.org>
parent 8144e1e8
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -52,7 +52,8 @@ static int st_clk_probe(struct platform_device *pdev)
		0, st_data->base + MISCCLKCNTL1, OSCCLKENB,
		CLK_GATE_SET_TO_DISABLE, NULL);

	clk_hw_register_clkdev(hws[ST_CLK_GATE], "oscout1", NULL);
	devm_clk_hw_register_clkdev(&pdev->dev, hws[ST_CLK_GATE], "oscout1",
				    NULL);

	return 0;
}