Skip to content

Commit

Permalink
clk: xilinx: Convert to platform remove callback returning void
Browse files Browse the repository at this point in the history
The .remove() callback for a platform driver returns an int which makes
many driver authors wrongly assume it's possible to do error handling by
returning an error code. However the value returned is (mostly) ignored
and this typically results in resource leaks. To improve here there is a
quest to make the remove callback return void. In the first step of this
quest all drivers are converted to .remove_new() which already returns
void.

Trivially convert this driver from always returning zero in the remove
callback to the void returning variant.

Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Link: https://lore.kernel.org/r/20230312161512.2715500-31-u.kleine-koenig@pengutronix.de
Signed-off-by: Stephen Boyd <sboyd@kernel.org>
  • Loading branch information
Uwe Kleine-König authored and Stephen Boyd committed Mar 29, 2023
1 parent 4690d24 commit ce1c5f8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
6 changes: 2 additions & 4 deletions drivers/clk/xilinx/clk-xlnx-clock-wizard.c
Original file line number Diff line number Diff line change
Expand Up @@ -593,7 +593,7 @@ static int clk_wzrd_probe(struct platform_device *pdev)
return ret;
}

static int clk_wzrd_remove(struct platform_device *pdev)
static void clk_wzrd_remove(struct platform_device *pdev)
{
int i;
struct clk_wzrd *clk_wzrd = platform_get_drvdata(pdev);
Expand All @@ -611,8 +611,6 @@ static int clk_wzrd_remove(struct platform_device *pdev)
}

clk_disable_unprepare(clk_wzrd->axi_clk);

return 0;
}

static const struct of_device_id clk_wzrd_ids[] = {
Expand All @@ -630,7 +628,7 @@ static struct platform_driver clk_wzrd_driver = {
.pm = &clk_wzrd_dev_pm_ops,
},
.probe = clk_wzrd_probe,
.remove = clk_wzrd_remove,
.remove_new = clk_wzrd_remove,
};
module_platform_driver(clk_wzrd_driver);

Expand Down
6 changes: 2 additions & 4 deletions drivers/clk/xilinx/xlnx_vcu.c
Original file line number Diff line number Diff line change
Expand Up @@ -702,7 +702,7 @@ static int xvcu_probe(struct platform_device *pdev)
* Return: Returns 0 on success
* Negative error code otherwise
*/
static int xvcu_remove(struct platform_device *pdev)
static void xvcu_remove(struct platform_device *pdev)
{
struct xvcu_device *xvcu;

Expand All @@ -714,8 +714,6 @@ static int xvcu_remove(struct platform_device *pdev)
regmap_write(xvcu->logicore_reg_ba, VCU_GASKET_INIT, 0);

clk_disable_unprepare(xvcu->aclk);

return 0;
}

static const struct of_device_id xvcu_of_id_table[] = {
Expand All @@ -731,7 +729,7 @@ static struct platform_driver xvcu_driver = {
.of_match_table = xvcu_of_id_table,
},
.probe = xvcu_probe,
.remove = xvcu_remove,
.remove_new = xvcu_remove,
};

module_platform_driver(xvcu_driver);
Expand Down

0 comments on commit ce1c5f8

Please sign in to comment.