wifi: ath9k: Convert to platform remove callback returning void
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Sun, 17 Dec 2023 11:29:03 +0000 (13:29 +0200)
committerKalle Valo <quic_kvalo@quicinc.com>
Mon, 18 Dec 2023 18:46:11 +0000 (20:46 +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>
Acked-by: Toke Høiland-Jørgensen <toke@toke.dk>
Signed-off-by: Kalle Valo <quic_kvalo@quicinc.com>
Link: https://msgid.link/20231117093056.873834-11-u.kleine-koenig@pengutronix.de
drivers/net/wireless/ath/ath9k/ahb.c

index 9bfaadfa6c0099f73706f79f5d5eb51dad0d0d57..1a6697b6e3b41fd6de77cd09a875986733787cc1 100644 (file)
@@ -144,7 +144,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 ieee80211_hw *hw = platform_get_drvdata(pdev);
 
@@ -155,13 +155,11 @@ static int ath_ahb_remove(struct platform_device *pdev)
                free_irq(sc->irq, sc);
                ieee80211_free_hw(sc->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   = "ath9k",
        },