platform/surface: hotplug: Convert to platform remove callback returning void
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Sun, 17 Sep 2023 20:38:05 +0000 (22:38 +0200)
committerHans de Goede <hdegoede@redhat.com>
Thu, 21 Sep 2023 16:31:19 +0000 (18:31 +0200)
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() is 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>
Reviewed-by: Maximilian Luz <luzmaximilian@gmail.com>
Link: https://lore.kernel.org/r/20230917203805.1149595-8-u.kleine-koenig@pengutronix.de
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
drivers/platform/surface/surface_hotplug.c

index 7b6d887dccdbf2b399b7feea6e89dcd8d7dae2e1..a404f26cfae8d7b3f985e9349c587c7007c4e098 100644 (file)
@@ -183,7 +183,7 @@ static int shps_setup_irq(struct platform_device *pdev, enum shps_irq_type type)
        return 0;
 }
 
-static int surface_hotplug_remove(struct platform_device *pdev)
+static void surface_hotplug_remove(struct platform_device *pdev)
 {
        struct shps_device *sdev = platform_get_drvdata(pdev);
        int i;
@@ -195,8 +195,6 @@ static int surface_hotplug_remove(struct platform_device *pdev)
 
                mutex_destroy(&sdev->lock[i]);
        }
-
-       return 0;
 }
 
 static int surface_hotplug_probe(struct platform_device *pdev)
@@ -261,7 +259,7 @@ MODULE_DEVICE_TABLE(acpi, surface_hotplug_acpi_match);
 
 static struct platform_driver surface_hotplug_driver = {
        .probe = surface_hotplug_probe,
-       .remove = surface_hotplug_remove,
+       .remove_new = surface_hotplug_remove,
        .driver = {
                .name = "surface_hotplug",
                .acpi_match_table = surface_hotplug_acpi_match,