aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArik Nemtsov <arik@wizery.com>2011-08-30 02:34:01 -0400
committerLuciano Coelho <coelho@ti.com>2011-09-14 06:15:19 -0400
commit93f8c8e02597b7d7997c4a0a10173ac90ad378e8 (patch)
tree314d1f3cd313740a7f3a61edd17125ad598988a2
parentf1acea9a9d48174f982e14a7a488b208d39d825f (diff)
wl12xx: set mac80211 flags for A-MPDU aggregation support
We set the mac80211 flag for A-MPDU support and also indicate that Tx-agg session setup is performed in HW. This patch depends on "mac80211: add flag to indicate HW only Tx-agg setup support" Signed-off-by: Arik Nemtsov <arik@wizery.com> Signed-off-by: Luciano Coelho <coelho@ti.com>
-rw-r--r--drivers/net/wireless/wl12xx/main.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/net/wireless/wl12xx/main.c b/drivers/net/wireless/wl12xx/main.c
index 45cd10ab3aa..ade62b3d9a2 100644
--- a/drivers/net/wireless/wl12xx/main.c
+++ b/drivers/net/wireless/wl12xx/main.c
@@ -4506,7 +4506,9 @@ int wl1271_init_ieee80211(struct wl1271 *wl)
4506 IEEE80211_HW_SUPPORTS_CQM_RSSI | 4506 IEEE80211_HW_SUPPORTS_CQM_RSSI |
4507 IEEE80211_HW_REPORTS_TX_ACK_STATUS | 4507 IEEE80211_HW_REPORTS_TX_ACK_STATUS |
4508 IEEE80211_HW_SPECTRUM_MGMT | 4508 IEEE80211_HW_SPECTRUM_MGMT |
4509 IEEE80211_HW_AP_LINK_PS; 4509 IEEE80211_HW_AP_LINK_PS |
4510 IEEE80211_HW_AMPDU_AGGREGATION |
4511 IEEE80211_HW_TX_AMPDU_SETUP_IN_HW;
4510 4512
4511 wl->hw->wiphy->cipher_suites = cipher_suites; 4513 wl->hw->wiphy->cipher_suites = cipher_suites;
4512 wl->hw->wiphy->n_cipher_suites = ARRAY_SIZE(cipher_suites); 4514 wl->hw->wiphy->n_cipher_suites = ARRAY_SIZE(cipher_suites);