mirror of
https://github.com/openwrt/openwrt.git
synced 2025-01-02 03:56:49 +00:00
1bfcc1ea8a
Brings lots of driver updates and API changes needed for mt76 updates. Disable iwlwifi and ath11k on 5.15, since backport is too difficult, and the only remaining targets won't need those drivers. Signed-off-by: Felix Fietkau <nbd@nbd.name>
25 lines
813 B
Diff
25 lines
813 B
Diff
From 1338da257f299d35b4d954b9fda2cc7e0a54a69d Mon Sep 17 00:00:00 2001
|
|
From: Christian Lamparter <chunkeey@gmail.com>
|
|
Date: Sun, 11 Jun 2023 14:37:32 +0200
|
|
Subject: [PATCH] wifi: ath11k: add support DT ieee80211-freq-limit
|
|
|
|
The common DT property can be used to limit the available
|
|
channels/frequencies. But ath11k has to manually call
|
|
wiphy_read_of_freq_limits().
|
|
|
|
Signed-off-by: Christian Lamparter <chunkeey@gmail.com>
|
|
---
|
|
drivers/net/wireless/ath/ath11k/mac.c | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
--- a/drivers/net/wireless/ath/ath11k/mac.c
|
|
+++ b/drivers/net/wireless/ath/ath11k/mac.c
|
|
@@ -10034,6 +10034,7 @@ static int __ath11k_mac_register(struct
|
|
if (ret)
|
|
goto err;
|
|
|
|
+ wiphy_read_of_freq_limits(ar->hw->wiphy);
|
|
ath11k_mac_setup_ht_vht_cap(ar, cap, &ht_cap);
|
|
ath11k_mac_setup_he_cap(ar, cap);
|
|
|