memstick: rtsx_pci_ms: Convert to platform remove callback returning void
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Wed, 10 Apr 2024 14:05:49 +0000 (16:05 +0200)
committerUlf Hansson <ulf.hansson@linaro.org>
Thu, 25 Apr 2024 09:58:52 +0000 (11:58 +0200)
commit8401659fab6f437f1291b1ab37905d284b07b2f9
treeb49a78caf786bd8f8f7dd37c1fde70227a711893
parent25998816ff25a9c2cf58d38d744cbdee97881bce
memstick: rtsx_pci_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/512d6b6a4d3b8a02cee28635a936340f5f70c65e.1712757795.git.u.kleine-koenig@pengutronix.de
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
drivers/memstick/host/rtsx_pci_ms.c