From: Christian Lamparter Date: Mon, 11 Oct 2021 15:18:00 +0000 (+0300) Subject: ath9k: support DT ieee80211-freq-limit property to limit channels X-Git-Tag: v6.6.17~8953^2~121^2~20^2~4 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=03469e79fee9e8e908dae3bd1a80bcd9a66f2a88;p=platform%2Fkernel%2Flinux-rpi.git ath9k: support DT ieee80211-freq-limit property to limit channels 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 Signed-off-by: Kalle Valo Link: https://lore.kernel.org/r/20211009212847.1781986-1-chunkeey@gmail.com --- diff --git a/drivers/net/wireless/ath/ath9k/init.c b/drivers/net/wireless/ath/ath9k/init.c index 1568730..0344d6f 100644 --- a/drivers/net/wireless/ath/ath9k/init.c +++ b/drivers/net/wireless/ath/ath9k/init.c @@ -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)