wifi: ath5k: Convert to platform remove callback returning void
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Fri, 17 Nov 2023 09:30:59 +0000 (10:30 +0100)
committerKalle Valo <quic_kvalo@quicinc.com>
Fri, 1 Dec 2023 16:06:37 +0000 (18:06 +0200)
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: Jeff Johnson <quic_jjohnson@quicinc.com>
Signed-off-by: Kalle Valo <quic_kvalo@quicinc.com>
Link: https://lore.kernel.org/r/20231117093056.873834-10-u.kleine-koenig@pengutronix.de
drivers/net/wireless/ath/ath5k/ahb.c

index 08bd5d3b00f104bd731423275eb17fad63e443ef..f27308ccb2f15e75c76449dffe39cb2d56b5b8e5 100644 (file)
@@ -185,7 +185,7 @@ static int ath_ahb_probe(struct platform_device *pdev)
        return ret;
 }
 
-static int ath_ahb_remove(struct platform_device *pdev)
+static void ath_ahb_remove(struct platform_device *pdev)
 {
        struct ar231x_board_config *bcfg = dev_get_platdata(&pdev->dev);
        struct ieee80211_hw *hw = platform_get_drvdata(pdev);
@@ -193,7 +193,7 @@ static int ath_ahb_remove(struct platform_device *pdev)
        u32 reg;
 
        if (!hw)
-               return 0;
+               return;
 
        ah = hw->priv;
 
@@ -215,13 +215,11 @@ static int ath_ahb_remove(struct platform_device *pdev)
        ath5k_deinit_ah(ah);
        iounmap(ah->iobase);
        ieee80211_free_hw(hw);
-
-       return 0;
 }
 
 static struct platform_driver ath_ahb_driver = {
        .probe      = ath_ahb_probe,
-       .remove     = ath_ahb_remove,
+       .remove_new = ath_ahb_remove,
        .driver         = {
                .name   = "ar231x-wmac",
        },