media: seco-cec: 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
3f8b9bbc96
commit
ba878edae2
|
@ -668,7 +668,7 @@ err:
|
|||
return ret;
|
||||
}
|
||||
|
||||
static int secocec_remove(struct platform_device *pdev)
|
||||
static void secocec_remove(struct platform_device *pdev)
|
||||
{
|
||||
struct secocec_data *secocec = platform_get_drvdata(pdev);
|
||||
u16 val;
|
||||
|
@ -686,8 +686,6 @@ static int secocec_remove(struct platform_device *pdev)
|
|||
release_region(BRA_SMB_BASE_ADDR, 7);
|
||||
|
||||
dev_dbg(&pdev->dev, "CEC device removed\n");
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
#ifdef CONFIG_PM_SLEEP
|
||||
|
@ -780,7 +778,7 @@ static struct platform_driver secocec_driver = {
|
|||
.pm = SECOCEC_PM_OPS,
|
||||
},
|
||||
.probe = secocec_probe,
|
||||
.remove = secocec_remove,
|
||||
.remove_new = secocec_remove,
|
||||
};
|
||||
|
||||
module_platform_driver(secocec_driver);
|
||||
|
|
Loading…
Reference in New Issue