um: virtio_uml: Convert to platform remove callback returning void
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Sun, 10 Mar 2024 07:52:28 +0000 (08:52 +0100)
committerRichard Weinberger <richard@nod.at>
Tue, 30 Apr 2024 12:19:03 +0000 (14:19 +0200)
commit919e3ece7f5aaf7b5f3c54538d5303b6eeeb053b
tree9b726a5cecc3daaef7365dbf0fbc3cadb8c6206d
parent5aca3252ddb1e21a3d4281c72102e8da4957d41f
um: virtio_uml: 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: Geert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: Richard Weinberger <richard@nod.at>
arch/um/drivers/virtio_uml.c