diff options
author | Lorenzo Bianconi <lorenzo.bianconi83@gmail.com> | 2014-11-25 02:21:41 +0300 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2014-11-25 22:09:56 +0300 |
commit | 8b537686a116b060475d94b6f548c78289935fef (patch) | |
tree | 8c5ade18002adfc3c635394a50d76e1975f65fd3 /drivers/net/wireless/ath/ath9k/mac.h | |
parent | 23f53dd3062628d2215cab810e4cfc22c29d47ee (diff) | |
download | linux-8b537686a116b060475d94b6f548c78289935fef.tar.xz |
ath9k: add TPC capability to TX descriptor path
Add TPC capability to TX descriptor path. Cap per-packet TX power according to
TX power per-rate tables. Currently TPC is supported just by AR9003 based chips
Signed-off-by: Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ath/ath9k/mac.h')
-rw-r--r-- | drivers/net/wireless/ath/ath9k/mac.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/ath9k/mac.h b/drivers/net/wireless/ath/ath9k/mac.h index aa69ceaad0be..e55fa11894b6 100644 --- a/drivers/net/wireless/ath/ath9k/mac.h +++ b/drivers/net/wireless/ath/ath9k/mac.h @@ -704,7 +704,7 @@ struct ath_tx_info { enum ath9k_pkt_type type; enum ath9k_key_type keytype; u8 keyix; - u8 txpower; + u8 txpower[4]; }; struct ath_hw; |