media: imx-mipi-csis: 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 (mostly) ignored 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. 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: Hans Verkuil <hverkuil-cisco@xs4all.nl>
This commit is contained in:
parent
447925334c
commit
9457f2d955
|
@ -1503,7 +1503,7 @@ err_disable_clock:
|
|||
return ret;
|
||||
}
|
||||
|
||||
static int mipi_csis_remove(struct platform_device *pdev)
|
||||
static void mipi_csis_remove(struct platform_device *pdev)
|
||||
{
|
||||
struct v4l2_subdev *sd = platform_get_drvdata(pdev);
|
||||
struct mipi_csis_device *csis = sd_to_mipi_csis_device(sd);
|
||||
|
@ -1520,8 +1520,6 @@ static int mipi_csis_remove(struct platform_device *pdev)
|
|||
media_entity_cleanup(&csis->sd.entity);
|
||||
fwnode_handle_put(csis->sd.fwnode);
|
||||
pm_runtime_set_suspended(&pdev->dev);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static const struct of_device_id mipi_csis_of_match[] = {
|
||||
|
@ -1544,7 +1542,7 @@ MODULE_DEVICE_TABLE(of, mipi_csis_of_match);
|
|||
|
||||
static struct platform_driver mipi_csis_driver = {
|
||||
.probe = mipi_csis_probe,
|
||||
.remove = mipi_csis_remove,
|
||||
.remove_new = mipi_csis_remove,
|
||||
.driver = {
|
||||
.of_match_table = mipi_csis_of_match,
|
||||
.name = CSIS_DRIVER_NAME,
|
||||
|
|
Loading…
Reference in New Issue