diff options
-rw-r--r-- | drivers/net/wireless/ath/ath9k/hw.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/net/wireless/ath/ath9k/hw.c b/drivers/net/wireless/ath/ath9k/hw.c index a6bb9c4f8a87..f69c62e36ed8 100644 --- a/drivers/net/wireless/ath/ath9k/hw.c +++ b/drivers/net/wireless/ath/ath9k/hw.c | |||
@@ -99,6 +99,13 @@ static void ath9k_hw_set_clockrate(struct ath_hw *ah) | |||
99 | if (conf_is_ht40(conf)) | 99 | if (conf_is_ht40(conf)) |
100 | clockrate *= 2; | 100 | clockrate *= 2; |
101 | 101 | ||
102 | if (ah->curchan) { | ||
103 | if (IS_CHAN_HALF_RATE(ah->curchan)) | ||
104 | clockrate /= 2; | ||
105 | if (IS_CHAN_QUARTER_RATE(ah->curchan)) | ||
106 | clockrate /= 4; | ||
107 | } | ||
108 | |||
102 | common->clockrate = clockrate; | 109 | common->clockrate = clockrate; |
103 | } | 110 | } |
104 | 111 | ||