aboutsummaryrefslogtreecommitdiffstats
path: root/net/mac80211/ieee80211_sta.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/mac80211/ieee80211_sta.c')
-rw-r--r--net/mac80211/ieee80211_sta.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/mac80211/ieee80211_sta.c b/net/mac80211/ieee80211_sta.c
index 79dadd2976cd..d5d5610db1bd 100644
--- a/net/mac80211/ieee80211_sta.c
+++ b/net/mac80211/ieee80211_sta.c
@@ -1128,7 +1128,7 @@ static void ieee80211_sta_process_addba_request(struct net_device *dev,
1128 1128
1129 if (local->ops->ampdu_action) 1129 if (local->ops->ampdu_action)
1130 ret = local->ops->ampdu_action(hw, IEEE80211_AMPDU_RX_START, 1130 ret = local->ops->ampdu_action(hw, IEEE80211_AMPDU_RX_START,
1131 sta->addr, tid, start_seq_num); 1131 sta->addr, tid, &start_seq_num);
1132#ifdef CONFIG_MAC80211_HT_DEBUG 1132#ifdef CONFIG_MAC80211_HT_DEBUG
1133 printk(KERN_DEBUG "Rx A-MPDU on tid %d result %d", tid, ret); 1133 printk(KERN_DEBUG "Rx A-MPDU on tid %d result %d", tid, ret);
1134#endif /* CONFIG_MAC80211_HT_DEBUG */ 1134#endif /* CONFIG_MAC80211_HT_DEBUG */
@@ -1230,7 +1230,7 @@ void ieee80211_sta_stop_rx_ba_session(struct net_device *dev, u8 *ra, u16 tid,
1230 BUG_ON(!local->ops->ampdu_action); 1230 BUG_ON(!local->ops->ampdu_action);
1231 1231
1232 ret = local->ops->ampdu_action(hw, IEEE80211_AMPDU_RX_STOP, 1232 ret = local->ops->ampdu_action(hw, IEEE80211_AMPDU_RX_STOP,
1233 ra, tid, EINVAL); 1233 ra, tid, NULL);
1234 if (ret) 1234 if (ret)
1235 printk(KERN_DEBUG "HW problem - can not stop rx " 1235 printk(KERN_DEBUG "HW problem - can not stop rx "
1236 "aggergation for tid %d\n", tid); 1236 "aggergation for tid %d\n", tid);