mirror of
https://github.com/torvalds/linux.git
synced 2024-11-15 08:31:55 +00:00
clk: clk-st: avoid clkdev lookup leak at remove
Use devm based clkdev lookup registration to avoid leaking lookup structures. Signed-off-by: Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com> Signed-off-by: Stephen Boyd <sboyd@kernel.org>
This commit is contained in:
parent
8144e1e8ca
commit
d3236214e7
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user