mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-08 14:23:19 +00:00
media: chips-media: wave5: 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: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> Reviewed-by: Nicolas Dufresne <nicolas.dufresne@collabora.com> Signed-off-by: Sebastian Fricke <sebastian.fricke@collabora.com> Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
This commit is contained in:
parent
05dc7fc750
commit
ad9be163c5
@ -250,7 +250,7 @@ static int wave5_vpu_probe(struct platform_device *pdev)
|
||||
return ret;
|
||||
}
|
||||
|
||||
static int wave5_vpu_remove(struct platform_device *pdev)
|
||||
static void wave5_vpu_remove(struct platform_device *pdev)
|
||||
{
|
||||
struct vpu_device *dev = dev_get_drvdata(&pdev->dev);
|
||||
|
||||
@ -262,8 +262,6 @@ static int wave5_vpu_remove(struct platform_device *pdev)
|
||||
v4l2_device_unregister(&dev->v4l2_dev);
|
||||
wave5_vdi_release(&pdev->dev);
|
||||
ida_destroy(&dev->inst_ida);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static const struct wave5_match_data ti_wave521c_data = {
|
||||
@ -283,7 +281,7 @@ static struct platform_driver wave5_vpu_driver = {
|
||||
.of_match_table = of_match_ptr(wave5_dt_ids),
|
||||
},
|
||||
.probe = wave5_vpu_probe,
|
||||
.remove = wave5_vpu_remove,
|
||||
.remove_new = wave5_vpu_remove,
|
||||
};
|
||||
|
||||
module_platform_driver(wave5_vpu_driver);
|
||||
|
Loading…
Reference in New Issue
Block a user