diff options
Diffstat (limited to 'drivers/net/wireless/iwlwifi/mvm/sta.c')
-rw-r--r-- | drivers/net/wireless/iwlwifi/mvm/sta.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/wireless/iwlwifi/mvm/sta.c b/drivers/net/wireless/iwlwifi/mvm/sta.c index 861a7f9f8e7f..52aecf20d0df 100644 --- a/drivers/net/wireless/iwlwifi/mvm/sta.c +++ b/drivers/net/wireless/iwlwifi/mvm/sta.c | |||
@@ -686,7 +686,7 @@ int iwl_mvm_sta_tx_agg_start(struct iwl_mvm *mvm, struct ieee80211_vif *vif, | |||
686 | 686 | ||
687 | spin_lock_bh(&mvmsta->lock); | 687 | spin_lock_bh(&mvmsta->lock); |
688 | tid_data = &mvmsta->tid_data[tid]; | 688 | tid_data = &mvmsta->tid_data[tid]; |
689 | tid_data->ssn = SEQ_TO_SN(tid_data->seq_number); | 689 | tid_data->ssn = IEEE80211_SEQ_TO_SN(tid_data->seq_number); |
690 | tid_data->txq_id = txq_id; | 690 | tid_data->txq_id = txq_id; |
691 | *ssn = tid_data->ssn; | 691 | *ssn = tid_data->ssn; |
692 | 692 | ||
@@ -779,7 +779,7 @@ int iwl_mvm_sta_tx_agg_stop(struct iwl_mvm *mvm, struct ieee80211_vif *vif, | |||
779 | 779 | ||
780 | switch (tid_data->state) { | 780 | switch (tid_data->state) { |
781 | case IWL_AGG_ON: | 781 | case IWL_AGG_ON: |
782 | tid_data->ssn = SEQ_TO_SN(tid_data->seq_number); | 782 | tid_data->ssn = IEEE80211_SEQ_TO_SN(tid_data->seq_number); |
783 | 783 | ||
784 | IWL_DEBUG_TX_QUEUES(mvm, | 784 | IWL_DEBUG_TX_QUEUES(mvm, |
785 | "ssn = %d, next_recl = %d\n", | 785 | "ssn = %d, next_recl = %d\n", |