watchdog: riowd: 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> Reviewed-by: Guenter Roeck <linux@roeck-us.net> Link: https://lore.kernel.org/r/20230303213716.2123717-26-u.kleine-koenig@pengutronix.de Signed-off-by: Guenter Roeck <linux@roeck-us.net> Signed-off-by: Wim Van Sebroeck <wim@linux-watchdog.org>
This commit is contained in:
parent
b481d57bb1
commit
3628149f6e
@ -217,14 +217,12 @@ out:
|
||||
return err;
|
||||
}
|
||||
|
||||
static int riowd_remove(struct platform_device *op)
|
||||
static void riowd_remove(struct platform_device *op)
|
||||
{
|
||||
struct riowd *p = platform_get_drvdata(op);
|
||||
|
||||
misc_deregister(&riowd_miscdev);
|
||||
of_iounmap(&op->resource[0], p->regs, 2);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static const struct of_device_id riowd_match[] = {
|
||||
@ -241,7 +239,7 @@ static struct platform_driver riowd_driver = {
|
||||
.of_match_table = riowd_match,
|
||||
},
|
||||
.probe = riowd_probe,
|
||||
.remove = riowd_remove,
|
||||
.remove_new = riowd_remove,
|
||||
};
|
||||
|
||||
module_platform_driver(riowd_driver);
|
||||
|
Loading…
Reference in New Issue
Block a user