3394af677c
The ath patch number is already large and adding other patch for ath11k will add more confusion with the patch numbering. Since the support of ath11k based device is imminent, prepare the mac80211 ath patch dir and split it in the dedicated ath5k, ath9k, ath10k and ath11k (empty for now). Signed-off-by: Ansuel Smith <ansuelsmth@gmail.com>
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),
|