diff options
author | Uwe Kleine-König <u.kleine-koenig@pengutronix.de> | 2023-04-30 21:02:31 +0200 |
---|---|---|
committer | Stephen Boyd <sboyd@kernel.org> | 2023-05-10 13:36:03 -0700 |
commit | 61ca6ee782435a50f5ee816aa219dfa9ccc97c9a (patch) | |
tree | 8400cf5cd8a5c3d387feac9c139952b5d3d9c9bd /drivers/clk/mediatek/clk-mt2701-aud.c | |
parent | ac9a78681b921877518763ba0e89202254349d1b (diff) | |
download | lwn-61ca6ee782435a50f5ee816aa219dfa9ccc97c9a.tar.gz lwn-61ca6ee782435a50f5ee816aa219dfa9ccc97c9a.zip |
clk: mediatek: Make mtk_clk_simple_remove() return void
__mtk_clk_simple_remove() and so also mtk_clk_simple_remove() return
zero unconditionally. Make them return no value instead and convert the
drivers making use of it to platform_driver's .remove_new().
This makes the semantics in the callers of mtk_clk_simple_remove() clearer
and prepares for the quest to make platform driver's remove function return
void. There is no semantic change.
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Link: https://lore.kernel.org/r/20230430190233.878921-2-u.kleine-koenig@pengutronix.de
Signed-off-by: Stephen Boyd <sboyd@kernel.org>
Diffstat (limited to 'drivers/clk/mediatek/clk-mt2701-aud.c')
-rw-r--r-- | drivers/clk/mediatek/clk-mt2701-aud.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/clk/mediatek/clk-mt2701-aud.c b/drivers/clk/mediatek/clk-mt2701-aud.c index 5cd343b98685..3ce7e71196fd 100644 --- a/drivers/clk/mediatek/clk-mt2701-aud.c +++ b/drivers/clk/mediatek/clk-mt2701-aud.c @@ -150,15 +150,15 @@ err_plat_populate: return r; } -static int clk_mt2701_aud_remove(struct platform_device *pdev) +static void clk_mt2701_aud_remove(struct platform_device *pdev) { of_platform_depopulate(&pdev->dev); - return mtk_clk_simple_remove(pdev); + mtk_clk_simple_remove(pdev); } static struct platform_driver clk_mt2701_aud_drv = { .probe = clk_mt2701_aud_probe, - .remove = clk_mt2701_aud_remove, + .remove_new = clk_mt2701_aud_remove, .driver = { .name = "clk-mt2701-aud", .of_match_table = of_match_clk_mt2701_aud, |