]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
ipmi: ipmi_powernv: Convert to platform remove callback returning void
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Tue, 5 Mar 2024 16:26:59 +0000 (17:26 +0100)
committerCorey Minyard <minyard@acm.org>
Wed, 17 Apr 2024 19:55:04 +0000 (14:55 -0500)
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>
Message-Id: <22375be2dd616d8ccc2959586a08e49a5ad9e47b.1709655755.git.u.kleine-koenig@pengutronix.de>
Signed-off-by: Corey Minyard <minyard@acm.org>
drivers/char/ipmi/ipmi_powernv.c

index da22a8cbe68e8e2a6ca723df8df0bd16b90c9c98..c59a86eb58c7ba3fba03dd6a130bab84ff63552a 100644 (file)
@@ -281,15 +281,13 @@ err_free:
        return rc;
 }
 
-static int ipmi_powernv_remove(struct platform_device *pdev)
+static void ipmi_powernv_remove(struct platform_device *pdev)
 {
        struct ipmi_smi_powernv *smi = dev_get_drvdata(&pdev->dev);
 
        ipmi_unregister_smi(smi->intf);
        free_irq(smi->irq, smi);
        irq_dispose_mapping(smi->irq);
-
-       return 0;
 }
 
 static const struct of_device_id ipmi_powernv_match[] = {
@@ -304,7 +302,7 @@ static struct platform_driver powernv_ipmi_driver = {
                .of_match_table = ipmi_powernv_match,
        },
        .probe  = ipmi_powernv_probe,
-       .remove = ipmi_powernv_remove,
+       .remove_new = ipmi_powernv_remove,
 };