summaryrefslogtreecommitdiff
path: root/package/kernel/mac80211/patches/557-ath9k-disable-bands-via-dt.patch
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@nbd.name>2017-02-02 12:02:22 +0100
committerFelix Fietkau <nbd@nbd.name>2017-02-06 12:27:12 +0100
commit649e766a64a0d001f040dfc225c601b3d0af6f40 (patch)
tree6399891552e85e9d511546df07932551f60b7549 /package/kernel/mac80211/patches/557-ath9k-disable-bands-via-dt.patch
parent91fce81df6e99cec0876b9d4866bd86e7c49820f (diff)
downloadmtk-20170518-649e766a64a0d001f040dfc225c601b3d0af6f40.zip
mtk-20170518-649e766a64a0d001f040dfc225c601b3d0af6f40.tar.gz
mtk-20170518-649e766a64a0d001f040dfc225c601b3d0af6f40.tar.bz2
mac80211: update to wireless-testing 2017-01-31
Signed-off-by: Felix Fietkau <nbd@nbd.name>
Diffstat (limited to 'package/kernel/mac80211/patches/557-ath9k-disable-bands-via-dt.patch')
-rw-r--r--package/kernel/mac80211/patches/557-ath9k-disable-bands-via-dt.patch32
1 files changed, 0 insertions, 32 deletions
diff --git a/package/kernel/mac80211/patches/557-ath9k-disable-bands-via-dt.patch b/package/kernel/mac80211/patches/557-ath9k-disable-bands-via-dt.patch
deleted file mode 100644
index ae447ce..0000000
--- a/package/kernel/mac80211/patches/557-ath9k-disable-bands-via-dt.patch
+++ /dev/null
@@ -1,32 +0,0 @@
---- a/Documentation/devicetree/bindings/net/wireless/qca,ath9k.txt
-+++ b/Documentation/devicetree/bindings/net/wireless/qca,ath9k.txt
-@@ -34,6 +34,14 @@ Optional properties:
- ath9k wireless chip (in this case the calibration /
- EEPROM data will be loaded from userspace using the
- kernel firmware loader).
-+- qca,disable-2ghz: Overrides the settings from the EEPROM and disables the
-+ 2.4GHz band. Setting this property is only needed
-+ when the RF circuit does not support the 2.4GHz band
-+ while it is enabled nevertheless in the EEPROM.
-+- qca,disable-5ghz: Overrides the settings from the EEPROM and disables the
-+ 5GHz band. Setting this property is only needed when
-+ the RF circuit does not support the 5GHz band while
-+ it is enabled nevertheless in the EEPROM.
- - mac-address: See ethernet.txt in the parent directory
- - local-mac-address: See ethernet.txt in the parent directory
-
---- a/drivers/net/wireless/ath/ath9k/init.c
-+++ b/drivers/net/wireless/ath/ath9k/init.c
-@@ -571,6 +571,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),