aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/ath/ath9k/hw.c
diff options
context:
space:
mode:
authorMohammed Shafi Shajakhan <mohammed@qca.qualcomm.com>2011-12-07 06:21:39 -0500
committerJohn W. Linville <linville@tuxdriver.com>2011-12-16 09:30:42 -0500
commit1b2538b2ab8f37e55b91b3cce98d2df5c126125d (patch)
tree9b0bd6720383ca2532e508846becf97548858698 /drivers/net/wireless/ath/ath9k/hw.c
parent356cb55d81d1692bd74b96c71deeb7e1cf956196 (diff)
ath9k_hw: remove ATH9K_HW_CAP_CST
its not used anywhere in the current code Signed-off-by: Mohammed Shafi Shajakhan <mohammed@qca.qualcomm.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ath/ath9k/hw.c')
-rw-r--r--drivers/net/wireless/ath/ath9k/hw.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/net/wireless/ath/ath9k/hw.c b/drivers/net/wireless/ath/ath9k/hw.c
index 080fac4d2e3..8cda9a1513a 100644
--- a/drivers/net/wireless/ath/ath9k/hw.c
+++ b/drivers/net/wireless/ath/ath9k/hw.c
@@ -2399,12 +2399,10 @@ int ath9k_hw_fill_cap_info(struct ath_hw *ah)
2399 else 2399 else
2400 pCap->num_gpio_pins = AR_NUM_GPIO; 2400 pCap->num_gpio_pins = AR_NUM_GPIO;
2401 2401
2402 if (AR_SREV_9160_10_OR_LATER(ah) || AR_SREV_9100(ah)) { 2402 if (AR_SREV_9160_10_OR_LATER(ah) || AR_SREV_9100(ah))
2403 pCap->hw_caps |= ATH9K_HW_CAP_CST;
2404 pCap->rts_aggr_limit = ATH_AMPDU_LIMIT_MAX; 2403 pCap->rts_aggr_limit = ATH_AMPDU_LIMIT_MAX;
2405 } else { 2404 else
2406 pCap->rts_aggr_limit = (8 * 1024); 2405 pCap->rts_aggr_limit = (8 * 1024);
2407 }
2408 2406
2409#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE) 2407#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
2410 ah->rfsilent = ah->eep_ops->get_eeprom(ah, EEP_RF_SILENT); 2408 ah->rfsilent = ah->eep_ops->get_eeprom(ah, EEP_RF_SILENT);