mirror of
https://github.com/Telecominfraproject/wlan-ap.git
synced 2025-12-20 02:43:38 +00:00
This makes the v5.7 based wifi feature set from OpenWrt HEAD work inside 19.07. Signed-off-by: John Crispin <john@phrozen.org>
16 lines
523 B
Diff
16 lines
523 B
Diff
--- a/drivers/net/wireless/ath/ath9k/init.c
|
|
+++ b/drivers/net/wireless/ath/ath9k/init.c
|
|
@@ -627,6 +627,12 @@ static int ath9k_of_init(struct ath_soft
|
|
|
|
ath_dbg(common, CONFIG, "parsing configuration from OF node\n");
|
|
|
|
+ if (of_property_read_bool(np, "qca,disable-2ghz"))
|
|
+ ah->disable_2ghz = true;
|
|
+
|
|
+ if (of_property_read_bool(np, "qca,disable-5ghz"))
|
|
+ ah->disable_5ghz = true;
|
|
+
|
|
if (of_property_read_bool(np, "qca,no-eeprom")) {
|
|
/* ath9k-eeprom-<bus>-<id>.bin */
|
|
scnprintf(eeprom_name, sizeof(eeprom_name),
|