aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless
diff options
context:
space:
mode:
authorVasanthakumar Thiagarajan <vasanth@atheros.com>2010-12-06 07:27:40 -0500
committerJohn W. Linville <linville@tuxdriver.com>2010-12-07 16:34:52 -0500
commit784ad50324ec531fa4ab22586fe305657cc6e307 (patch)
tree4f933f1260d72fc411d42f25ff2648a62e6c00d5 /drivers/net/wireless
parent60e0c3a782f9060327751492dac949210154759b (diff)
ath9k_hw: Disable LDPC for AR9485
Signed-off-by: Vasanthakumar Thiagarajan <vasanth@atheros.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless')
-rw-r--r--drivers/net/wireless/ath/ath9k/hw.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/net/wireless/ath/ath9k/hw.c b/drivers/net/wireless/ath/ath9k/hw.c
index 2d4b3c27372..66b4a2acafd 100644
--- a/drivers/net/wireless/ath/ath9k/hw.c
+++ b/drivers/net/wireless/ath/ath9k/hw.c
@@ -1928,8 +1928,10 @@ int ath9k_hw_fill_cap_info(struct ath_hw *ah)
1928 } 1928 }
1929 1929
1930 if (AR_SREV_9300_20_OR_LATER(ah)) { 1930 if (AR_SREV_9300_20_OR_LATER(ah)) {
1931 pCap->hw_caps |= ATH9K_HW_CAP_EDMA | ATH9K_HW_CAP_LDPC | 1931 pCap->hw_caps |= ATH9K_HW_CAP_EDMA | ATH9K_HW_CAP_FASTCLOCK;
1932 ATH9K_HW_CAP_FASTCLOCK; 1932 if (!AR_SREV_9485(ah))
1933 pCap->hw_caps |= ATH9K_HW_CAP_LDPC;
1934
1933 pCap->rx_hp_qdepth = ATH9K_HW_RX_HP_QDEPTH; 1935 pCap->rx_hp_qdepth = ATH9K_HW_RX_HP_QDEPTH;
1934 pCap->rx_lp_qdepth = ATH9K_HW_RX_LP_QDEPTH; 1936 pCap->rx_lp_qdepth = ATH9K_HW_RX_LP_QDEPTH;
1935 pCap->rx_status_len = sizeof(struct ar9003_rxs); 1937 pCap->rx_status_len = sizeof(struct ar9003_rxs);