]> git.itanic.dy.fi Git - linux-stable/commitdiff
ath9k: support DT ieee80211-freq-limit property to limit channels
authorChristian Lamparter <chunkeey@gmail.com>
Mon, 11 Oct 2021 15:18:00 +0000 (18:18 +0300)
committerKalle Valo <kvalo@codeaurora.org>
Wed, 13 Oct 2021 05:46:20 +0000 (08:46 +0300)
The common DT property can be used to limit the available channels
but ath9k has to manually call wiphy_read_of_freq_limits().

I would have put this into ath9k_of_init(). But it didn't work there.
The reason is that in ath9k_of_init() the channels and bands are not yet
registered in the wiphy struct. So there isn't any channel to flag as
disabled.

Signed-off-by: Christian Lamparter <chunkeey@gmail.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
Link: https://lore.kernel.org/r/20211009212847.1781986-1-chunkeey@gmail.com
drivers/net/wireless/ath/ath9k/init.c

index 1568730fc01e7540d12715f6b9ff53e963527633..0344d6f2727516fd080c7b87b19c55c066cbc892 100644 (file)
@@ -1094,6 +1094,8 @@ int ath9k_init_device(u16 devid, struct ath_softc *sc,
                ARRAY_SIZE(ath9k_tpt_blink));
 #endif
 
+       wiphy_read_of_freq_limits(hw->wiphy);
+
        /* Register with mac80211 */
        error = ieee80211_register_hw(hw);
        if (error)