crypto: inside-secure/safexcel - Convert to platform remove callback returning void
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Fri, 20 Oct 2023 07:55:43 +0000 (09:55 +0200)
committerHerbert Xu <herbert@gondor.apana.org.au>
Fri, 27 Oct 2023 10:04:26 +0000 (18:04 +0800)
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>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
drivers/crypto/inside-secure/safexcel.c

index 9ff02b5abc4aeb1f9867a47e761027cdea6a3e05..76da14af74b592529b137fca045c6ec4fc22c721 100644 (file)
@@ -1801,7 +1801,7 @@ err_core_clk:
        return ret;
 }
 
-static int safexcel_remove(struct platform_device *pdev)
+static void safexcel_remove(struct platform_device *pdev)
 {
        struct safexcel_crypto_priv *priv = platform_get_drvdata(pdev);
        int i;
@@ -1816,8 +1816,6 @@ static int safexcel_remove(struct platform_device *pdev)
                irq_set_affinity_hint(priv->ring[i].irq, NULL);
                destroy_workqueue(priv->ring[i].workqueue);
        }
-
-       return 0;
 }
 
 static const struct safexcel_priv_data eip97ies_mrvl_data = {
@@ -1874,7 +1872,7 @@ MODULE_DEVICE_TABLE(of, safexcel_of_match_table);
 
 static struct platform_driver  crypto_safexcel = {
        .probe          = safexcel_probe,
-       .remove         = safexcel_remove,
+       .remove_new     = safexcel_remove,
        .driver         = {
                .name   = "crypto-safexcel",
                .of_match_table = safexcel_of_match_table,