xen/grant-dma-iommu: Convert to platform remove callback returning void
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Thu, 7 Mar 2024 18:11:34 +0000 (19:11 +0100)
committerJuergen Gross <jgross@suse.com>
Wed, 13 Mar 2024 16:09:26 +0000 (17:09 +0100)
commitcc87253e22fce03d801c32220eeace2f9e3ec39d
treec8add8440263990a03397817cb1b7280dab5baa2
parente8f897f4afef0031fe618a8e94127a0934896aba
xen/grant-dma-iommu: 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: Juergen Gross <jgross@suse.com>
Link: https://lore.kernel.org/r/20240307181135.191192-2-u.kleine-koenig@pengutronix.de
Signed-off-by: Juergen Gross <jgross@suse.com>
drivers/xen/grant-dma-iommu.c