perf: xgene: Convert to platform remove callback returning void
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Fri, 15 Dec 2023 13:59:18 +0000 (14:59 +0100)
committerWill Deacon <will@kernel.org>
Fri, 9 Feb 2024 15:59:30 +0000 (15:59 +0000)
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://lore.kernel.org/r/75dda01b2ad6e17f726830094bd38cb8faab5cbe.1702648125.git.u.kleine-koenig@pengutronix.de
Signed-off-by: Will Deacon <will@kernel.org>
drivers/perf/xgene_pmu.c

index 7ce344248dda6319f3958ab0d831f945a515ef8f..0d49343d704b7c971b1616527f4a0190d9f89f19 100644 (file)
@@ -1937,7 +1937,7 @@ xgene_pmu_dev_cleanup(struct xgene_pmu *xgene_pmu, struct list_head *pmus)
        }
 }
 
-static int xgene_pmu_remove(struct platform_device *pdev)
+static void xgene_pmu_remove(struct platform_device *pdev)
 {
        struct xgene_pmu *xgene_pmu = dev_get_drvdata(&pdev->dev);
 
@@ -1947,13 +1947,11 @@ static int xgene_pmu_remove(struct platform_device *pdev)
        xgene_pmu_dev_cleanup(xgene_pmu, &xgene_pmu->mcpmus);
        cpuhp_state_remove_instance(CPUHP_AP_PERF_ARM_APM_XGENE_ONLINE,
                                    &xgene_pmu->node);
-
-       return 0;
 }
 
 static struct platform_driver xgene_pmu_driver = {
        .probe = xgene_pmu_probe,
-       .remove = xgene_pmu_remove,
+       .remove_new = xgene_pmu_remove,
        .driver = {
                .name           = "xgene-pmu",
                .of_match_table = xgene_pmu_of_match,