diff options
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/net/wireless/iwlwifi/iwl-4965.c | 4 | ||||
-rw-r--r-- | drivers/net/wireless/iwlwifi/iwl-4965.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl-4965.c b/drivers/net/wireless/iwlwifi/iwl-4965.c index d727de8b96fe..cd4f5e383e60 100644 --- a/drivers/net/wireless/iwlwifi/iwl-4965.c +++ b/drivers/net/wireless/iwlwifi/iwl-4965.c | |||
@@ -4732,7 +4732,7 @@ static void iwl4965_sta_modify_del_ba_tid(struct iwl4965_priv *priv, | |||
4732 | 4732 | ||
4733 | int iwl4965_mac_ampdu_action(struct ieee80211_hw *hw, | 4733 | int iwl4965_mac_ampdu_action(struct ieee80211_hw *hw, |
4734 | enum ieee80211_ampdu_mlme_action action, | 4734 | enum ieee80211_ampdu_mlme_action action, |
4735 | const u8 *addr, u16 tid, u16 ssn) | 4735 | const u8 *addr, u16 tid, u16 *ssn) |
4736 | { | 4736 | { |
4737 | struct iwl4965_priv *priv = hw->priv; | 4737 | struct iwl4965_priv *priv = hw->priv; |
4738 | int sta_id; | 4738 | int sta_id; |
@@ -4744,7 +4744,7 @@ int iwl4965_mac_ampdu_action(struct ieee80211_hw *hw, | |||
4744 | switch (action) { | 4744 | switch (action) { |
4745 | case IEEE80211_AMPDU_RX_START: | 4745 | case IEEE80211_AMPDU_RX_START: |
4746 | IWL_DEBUG_HT("start Rx\n"); | 4746 | IWL_DEBUG_HT("start Rx\n"); |
4747 | iwl4965_sta_modify_add_ba_tid(priv, sta_id, tid, ssn); | 4747 | iwl4965_sta_modify_add_ba_tid(priv, sta_id, tid, *ssn); |
4748 | break; | 4748 | break; |
4749 | case IEEE80211_AMPDU_RX_STOP: | 4749 | case IEEE80211_AMPDU_RX_STOP: |
4750 | IWL_DEBUG_HT("stop Rx\n"); | 4750 | IWL_DEBUG_HT("stop Rx\n"); |
diff --git a/drivers/net/wireless/iwlwifi/iwl-4965.h b/drivers/net/wireless/iwlwifi/iwl-4965.h index 9cb82be0ff80..6edf869d4d54 100644 --- a/drivers/net/wireless/iwlwifi/iwl-4965.h +++ b/drivers/net/wireless/iwlwifi/iwl-4965.h | |||
@@ -777,7 +777,7 @@ extern void iwl4965_set_ht_add_station(struct iwl4965_priv *priv, u8 index, | |||
777 | struct ieee80211_ht_info *sta_ht_inf); | 777 | struct ieee80211_ht_info *sta_ht_inf); |
778 | extern int iwl4965_mac_ampdu_action(struct ieee80211_hw *hw, | 778 | extern int iwl4965_mac_ampdu_action(struct ieee80211_hw *hw, |
779 | enum ieee80211_ampdu_mlme_action action, | 779 | enum ieee80211_ampdu_mlme_action action, |
780 | const u8 *addr, u16 tid, u16 ssn); | 780 | const u8 *addr, u16 tid, u16 *ssn); |
781 | #ifdef CONFIG_IWL4965_HT_AGG | 781 | #ifdef CONFIG_IWL4965_HT_AGG |
782 | extern int iwl4965_mac_ht_tx_agg_start(struct ieee80211_hw *hw, u8 *da, | 782 | extern int iwl4965_mac_ht_tx_agg_start(struct ieee80211_hw *hw, u8 *da, |
783 | u16 tid, u16 *start_seq_num); | 783 | u16 tid, u16 *start_seq_num); |