Commit cfae9860 authored by Uwe Kleine-König's avatar Uwe Kleine-König Committed by Ilpo Järvinen

platform/mellanox: mlxreg-lc: 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: default avatarUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Link: https://lore.kernel.org/r/20230927081040.2198742-19-u.kleine-koenig@pengutronix.deReviewed-by: default avatarIlpo Järvinen <ilpo.jarvinen@linux.intel.com>
Signed-off-by: default avatarIlpo Järvinen <ilpo.jarvinen@linux.intel.com>
parent e0489bb0
...@@ -907,7 +907,7 @@ static int mlxreg_lc_probe(struct platform_device *pdev) ...@@ -907,7 +907,7 @@ static int mlxreg_lc_probe(struct platform_device *pdev)
return err; return err;
} }
static int mlxreg_lc_remove(struct platform_device *pdev) static void mlxreg_lc_remove(struct platform_device *pdev)
{ {
struct mlxreg_core_data *data = dev_get_platdata(&pdev->dev); struct mlxreg_core_data *data = dev_get_platdata(&pdev->dev);
struct mlxreg_lc *mlxreg_lc = platform_get_drvdata(pdev); struct mlxreg_lc *mlxreg_lc = platform_get_drvdata(pdev);
...@@ -921,7 +921,7 @@ static int mlxreg_lc_remove(struct platform_device *pdev) ...@@ -921,7 +921,7 @@ static int mlxreg_lc_remove(struct platform_device *pdev)
* is nothing to remove. * is nothing to remove.
*/ */
if (!data->notifier || !data->notifier->handle) if (!data->notifier || !data->notifier->handle)
return 0; return;
/* Clear event notification callback and handle. */ /* Clear event notification callback and handle. */
data->notifier->user_handler = NULL; data->notifier->user_handler = NULL;
...@@ -940,13 +940,11 @@ static int mlxreg_lc_remove(struct platform_device *pdev) ...@@ -940,13 +940,11 @@ static int mlxreg_lc_remove(struct platform_device *pdev)
i2c_put_adapter(data->hpdev.adapter); i2c_put_adapter(data->hpdev.adapter);
data->hpdev.adapter = NULL; data->hpdev.adapter = NULL;
} }
return 0;
} }
static struct platform_driver mlxreg_lc_driver = { static struct platform_driver mlxreg_lc_driver = {
.probe = mlxreg_lc_probe, .probe = mlxreg_lc_probe,
.remove = mlxreg_lc_remove, .remove_new = mlxreg_lc_remove,
.driver = { .driver = {
.name = "mlxreg-lc", .name = "mlxreg-lc",
}, },
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment