|
@@ -867,14 +867,14 @@ static void rs_tx_status(void *priv_r, struct ieee80211_supported_band *sband,
|
|
|
rs_get_tbl_info_from_mcs(tx_rate, priv->band, &tbl_type,
|
|
|
&rs_index);
|
|
|
rs_collect_tx_data(curr_tbl, rs_index,
|
|
|
- info->status.ampdu_ack_len,
|
|
|
- info->status.ampdu_ack_map);
|
|
|
+ info->status.ampdu_len,
|
|
|
+ info->status.ampdu_ack_len);
|
|
|
|
|
|
/* Update success/fail counts if not searching for new mode */
|
|
|
if (lq_sta->stay_in_tbl) {
|
|
|
- lq_sta->total_success += info->status.ampdu_ack_map;
|
|
|
- lq_sta->total_failed += (info->status.ampdu_ack_len -
|
|
|
- info->status.ampdu_ack_map);
|
|
|
+ lq_sta->total_success += info->status.ampdu_ack_len;
|
|
|
+ lq_sta->total_failed += (info->status.ampdu_len -
|
|
|
+ info->status.ampdu_ack_len);
|
|
|
}
|
|
|
} else {
|
|
|
/*
|