Skip to content

Commit 6f382a0

Browse files
Uwe Kleine-Königbroonie
authored andcommitted
regulator: stm32-vrefbuf: Convert to platform remove callback returning void
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 ignored (apart from emitting a warning) 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. Eventually after all drivers are converted, .remove_new() will be renamed to .remove(). 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://msgid.link/r/2e96cf99c8d97b728d891a745e8f94ee39fbfee8.1701778038.git.u.kleine-koenig@pengutronix.de Signed-off-by: Mark Brown <broonie@kernel.org>
1 parent 0210a60 commit 6f382a0

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

drivers/regulator/stm32-vrefbuf.c

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ static int stm32_vrefbuf_probe(struct platform_device *pdev)
233233
return ret;
234234
}
235235

236-
static int stm32_vrefbuf_remove(struct platform_device *pdev)
236+
static void stm32_vrefbuf_remove(struct platform_device *pdev)
237237
{
238238
struct regulator_dev *rdev = platform_get_drvdata(pdev);
239239
struct stm32_vrefbuf *priv = rdev_get_drvdata(rdev);
@@ -244,8 +244,6 @@ static int stm32_vrefbuf_remove(struct platform_device *pdev)
244244
pm_runtime_disable(&pdev->dev);
245245
pm_runtime_set_suspended(&pdev->dev);
246246
pm_runtime_put_noidle(&pdev->dev);
247-
248-
return 0;
249247
};
250248

251249
static int __maybe_unused stm32_vrefbuf_runtime_suspend(struct device *dev)
@@ -282,7 +280,7 @@ MODULE_DEVICE_TABLE(of, stm32_vrefbuf_of_match);
282280

283281
static struct platform_driver stm32_vrefbuf_driver = {
284282
.probe = stm32_vrefbuf_probe,
285-
.remove = stm32_vrefbuf_remove,
283+
.remove_new = stm32_vrefbuf_remove,
286284
.driver = {
287285
.name = "stm32-vrefbuf",
288286
.probe_type = PROBE_PREFER_ASYNCHRONOUS,

0 commit comments

Comments
 (0)