diff options
author | Rajkumar Manoharan <rmanohar@qca.qualcomm.com> | 2011-08-27 01:52:59 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2011-08-29 15:33:02 -0400 |
commit | e3f2acc76dbae64d1b08455bbbaa855141d0238d (patch) | |
tree | c23b9a0f42e07aba10ef5859afb5ebb0d4b60503 /drivers/net/wireless/ath | |
parent | 547589668336d6cf25c2023173d5d2c25fb7bc48 (diff) |
ath9k_hw: Set default slottime as 9us
Initialize 9us slot time as that is what is used mostly
(for non-ERP cases) and also to be in sync with initvals.
Signed-off-by: Rajkumar Manoharan <rmanohar@qca.qualcomm.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ath')
-rw-r--r-- | drivers/net/wireless/ath/ath9k/hw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/ath9k/hw.c b/drivers/net/wireless/ath/ath9k/hw.c index 7bfc8f65a67d..4ba0ee91d43a 100644 --- a/drivers/net/wireless/ath/ath9k/hw.c +++ b/drivers/net/wireless/ath/ath9k/hw.c | |||
@@ -440,7 +440,7 @@ static void ath9k_hw_init_defaults(struct ath_hw *ah) | |||
440 | if (AR_SREV_9100(ah)) | 440 | if (AR_SREV_9100(ah)) |
441 | ah->sta_id1_defaults |= AR_STA_ID1_AR9100_BA_FIX; | 441 | ah->sta_id1_defaults |= AR_STA_ID1_AR9100_BA_FIX; |
442 | ah->enable_32kHz_clock = DONT_USE_32KHZ; | 442 | ah->enable_32kHz_clock = DONT_USE_32KHZ; |
443 | ah->slottime = 20; | 443 | ah->slottime = ATH9K_SLOT_TIME_9; |
444 | ah->globaltxtimeout = (u32) -1; | 444 | ah->globaltxtimeout = (u32) -1; |
445 | ah->power_mode = ATH9K_PM_UNDEFINED; | 445 | ah->power_mode = ATH9K_PM_UNDEFINED; |
446 | } | 446 | } |