aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/ath/ath9k/hw.h
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2010-04-15 17:38:39 -0400
committerJohn W. Linville <linville@tuxdriver.com>2010-04-16 15:43:25 -0400
commitc16fcb49b3849b4dceec9e4bbeb013b0713c7b38 (patch)
treed0bf7517ade9dd8c203746d4ffec0d36f86b37f2 /drivers/net/wireless/ath/ath9k/hw.h
parentcffb5e49a147cfc6491f561f9b330e1001276185 (diff)
ath9k_hw: Split off ANI control to the PHY ops
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.h2
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 c3928be63b3a..b0cfc77a66fc 100644
--- a/drivers/net/wireless/ath/ath9k/hw.h
+++ b/drivers/net/wireless/ath/ath9k/hw.h
@@ -508,6 +508,8 @@ struct ath_hw_private_ops {
508 void (*set_diversity)(struct ath_hw *ah, bool value); 508 void (*set_diversity)(struct ath_hw *ah, bool value);
509 u32 (*compute_pll_control)(struct ath_hw *ah, 509 u32 (*compute_pll_control)(struct ath_hw *ah,
510 struct ath9k_channel *chan); 510 struct ath9k_channel *chan);
511 bool (*ani_control)(struct ath_hw *ah, enum ath9k_ani_cmd cmd,
512 int param);
511}; 513};
512 514
513/** 515/**