diff options
author | Felix Fietkau <nbd@openwrt.org> | 2014-10-25 19:19:34 +0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2014-10-27 21:16:19 +0300 |
commit | 3468968ef766d7bb4ab29c0ef7ebd169a4ac2e96 (patch) | |
tree | 025c8015b7fbea7b55484cefcbf307bc33368a17 /drivers/net/wireless/ath/ath9k/hw.h | |
parent | a59dadbeeaf7d33f2e92dbf5a290965d6df64162 (diff) | |
download | linux-3468968ef766d7bb4ab29c0ef7ebd169a4ac2e96.tar.xz |
ath9k: allow disabling bands via platform data
Some devices have multiple bands enables in the EEPROM data, even though
they are only calibrated for one. Allow platform data to disable
unsupported bands.
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ath/ath9k/hw.h')
-rw-r--r-- | drivers/net/wireless/ath/ath9k/hw.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/net/wireless/ath/ath9k/hw.h b/drivers/net/wireless/ath/ath9k/hw.h index c6dba9b4afdf..e49721e85f6a 100644 --- a/drivers/net/wireless/ath/ath9k/hw.h +++ b/drivers/net/wireless/ath/ath9k/hw.h @@ -930,6 +930,8 @@ struct ath_hw { bool is_clk_25mhz; int (*get_mac_revision)(void); int (*external_reset)(void); + bool disable_2ghz; + bool disable_5ghz; const struct firmware *eeprom_blob; |