Commit 56d144d0 authored by Lars-Peter Clausen's avatar Lars-Peter Clausen Committed by Stephen Boyd
Browse files

clk: hsdk-pll: Use managed `of_clk_add_hw_provider()`



Use the managed `devm_of_clk_add_hw_provider()` instead of
`of_clk_add_hw_provider()`.

This makes sure the provider gets automatically removed on unbind and
allows to completely eliminate the drivers `remove()` callback.

Signed-off-by: default avatarLars-Peter Clausen <lars@metafoo.de>
Link: https://lore.kernel.org/r/20230410014502.27929-5-lars@metafoo.de


Signed-off-by: default avatarStephen Boyd <sboyd@kernel.org>
parent c2e59c7f
Loading
Loading
Loading
Loading
+2 −8
Original line number Diff line number Diff line
@@ -346,15 +346,10 @@ static int hsdk_pll_clk_probe(struct platform_device *pdev)
		return ret;
	}

	return of_clk_add_hw_provider(dev->of_node, of_clk_hw_simple_get,
	return devm_of_clk_add_hw_provider(dev, of_clk_hw_simple_get,
					   &pll_clk->hw);
}

static void hsdk_pll_clk_remove(struct platform_device *pdev)
{
	of_clk_del_provider(pdev->dev.of_node);
}

static void __init of_hsdk_pll_clk_setup(struct device_node *node)
{
	int ret;
@@ -431,6 +426,5 @@ static struct platform_driver hsdk_pll_clk_driver = {
		.of_match_table = hsdk_pll_clk_id,
	},
	.probe = hsdk_pll_clk_probe,
	.remove_new = hsdk_pll_clk_remove,
};
builtin_platform_driver(hsdk_pll_clk_driver);