Skip to content

Commit 0df0258

Browse files
Uwe Kleine-Königchanwoochoi
authored andcommitted
PM / devfreq: mtk-cci: 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 <[email protected]> Signed-off-by: Chanwoo Choi <[email protected]>
1 parent 177e15d commit 0df0258

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

drivers/devfreq/mtk-cci-devfreq.c

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -392,7 +392,7 @@ static int mtk_ccifreq_probe(struct platform_device *pdev)
392392
return ret;
393393
}
394394

395-
static int mtk_ccifreq_remove(struct platform_device *pdev)
395+
static void mtk_ccifreq_remove(struct platform_device *pdev)
396396
{
397397
struct device *dev = &pdev->dev;
398398
struct mtk_ccifreq_drv *drv;
@@ -405,8 +405,6 @@ static int mtk_ccifreq_remove(struct platform_device *pdev)
405405
regulator_disable(drv->proc_reg);
406406
if (drv->sram_reg)
407407
regulator_disable(drv->sram_reg);
408-
409-
return 0;
410408
}
411409

412410
static const struct mtk_ccifreq_platform_data mt8183_platform_data = {
@@ -432,7 +430,7 @@ MODULE_DEVICE_TABLE(of, mtk_ccifreq_machines);
432430

433431
static struct platform_driver mtk_ccifreq_platdrv = {
434432
.probe = mtk_ccifreq_probe,
435-
.remove = mtk_ccifreq_remove,
433+
.remove_new = mtk_ccifreq_remove,
436434
.driver = {
437435
.name = "mtk-ccifreq",
438436
.of_match_table = mtk_ccifreq_machines,

0 commit comments

Comments
 (0)