fbdev: ocfb: 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: Helge Deller <deller@gmx.de>
This commit is contained in:
parent
419368fba7
commit
d14e9328fe
@ -370,7 +370,7 @@ err_dma_free:
|
||||
return ret;
|
||||
}
|
||||
|
||||
static int ocfb_remove(struct platform_device *pdev)
|
||||
static void ocfb_remove(struct platform_device *pdev)
|
||||
{
|
||||
struct ocfb_dev *fbdev = platform_get_drvdata(pdev);
|
||||
|
||||
@ -383,8 +383,6 @@ static int ocfb_remove(struct platform_device *pdev)
|
||||
ocfb_writereg(fbdev, OCFB_CTRL, 0);
|
||||
|
||||
platform_set_drvdata(pdev, NULL);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static const struct of_device_id ocfb_match[] = {
|
||||
@ -395,7 +393,7 @@ MODULE_DEVICE_TABLE(of, ocfb_match);
|
||||
|
||||
static struct platform_driver ocfb_driver = {
|
||||
.probe = ocfb_probe,
|
||||
.remove = ocfb_remove,
|
||||
.remove_new = ocfb_remove,
|
||||
.driver = {
|
||||
.name = "ocfb_fb",
|
||||
.of_match_table = ocfb_match,
|
||||
|
Loading…
Reference in New Issue
Block a user