PM / devfreq: mtk-cci: Convert to platform remove callback returning void
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Mon, 4 Mar 2024 21:28:41 +0000 (22:28 +0100)
committerChanwoo Choi <cw00.choi@samsung.com>
Wed, 8 May 2024 14:53:08 +0000 (23:53 +0900)
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>
Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>
drivers/devfreq/mtk-cci-devfreq.c

index 11bc3d03494cb7366019b75556c6472634bb8e4c..7ad5225b0381d23ae518e4a6fdbe20363b74c2b6 100644 (file)
@@ -392,7 +392,7 @@ out_free_resources:
        return ret;
 }
 
-static int mtk_ccifreq_remove(struct platform_device *pdev)
+static void mtk_ccifreq_remove(struct platform_device *pdev)
 {
        struct device *dev = &pdev->dev;
        struct mtk_ccifreq_drv *drv;
@@ -405,8 +405,6 @@ static int mtk_ccifreq_remove(struct platform_device *pdev)
        regulator_disable(drv->proc_reg);
        if (drv->sram_reg)
                regulator_disable(drv->sram_reg);
-
-       return 0;
 }
 
 static const struct mtk_ccifreq_platform_data mt8183_platform_data = {
@@ -432,7 +430,7 @@ MODULE_DEVICE_TABLE(of, mtk_ccifreq_machines);
 
 static struct platform_driver mtk_ccifreq_platdrv = {
        .probe  = mtk_ccifreq_probe,
-       .remove = mtk_ccifreq_remove,
+       .remove_new = mtk_ccifreq_remove,
        .driver = {
                .name = "mtk-ccifreq",
                .of_match_table = mtk_ccifreq_machines,