memstick: rtsx_usb_ms: Convert to platform remove callback returning void
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Wed, 10 Apr 2024 14:05:50 +0000 (16:05 +0200)
committerUlf Hansson <ulf.hansson@linaro.org>
Thu, 25 Apr 2024 09:58:52 +0000 (11:58 +0200)
commitf16d1b8c9b9814120c83a2028d83ea5bc59654fd
treefe356de9120bb42e7c2668e3886f21081b42ce40
parent8401659fab6f437f1291b1ab37905d284b07b2f9
memstick: rtsx_usb_ms: 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>
Link: https://lore.kernel.org/r/80969cc7c08c613753bdf2270304983ed0dcc2a0.1712757795.git.u.kleine-koenig@pengutronix.de
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
drivers/memstick/host/rtsx_usb_ms.c