Skip to content

Commit a3e1820

Browse files
Uwe Kleine-Königmpe
Uwe Kleine-König
authored andcommitted
powerpc: pmi: 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 <[email protected]> Signed-off-by: Michael Ellerman <[email protected]> Link: https://msgid.link/3201daed6d19c01ee0ee72e0f9302a38ecef3577.1708529736.git.u.kleine-koenig@pengutronix.de
1 parent e2064de commit a3e1820

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

arch/powerpc/sysdev/pmi.c

+2-4
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ static int pmi_of_probe(struct platform_device *dev)
173173
return rc;
174174
}
175175

176-
static int pmi_of_remove(struct platform_device *dev)
176+
static void pmi_of_remove(struct platform_device *dev)
177177
{
178178
struct pmi_handler *handler, *tmp;
179179

@@ -189,13 +189,11 @@ static int pmi_of_remove(struct platform_device *dev)
189189

190190
kfree(data);
191191
data = NULL;
192-
193-
return 0;
194192
}
195193

196194
static struct platform_driver pmi_of_platform_driver = {
197195
.probe = pmi_of_probe,
198-
.remove = pmi_of_remove,
196+
.remove_new = pmi_of_remove,
199197
.driver = {
200198
.name = "pmi",
201199
.of_match_table = pmi_match,

0 commit comments

Comments
 (0)