aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/iwlwifi/iwl-5000.c
diff options
context:
space:
mode:
authorTomas Winkler <tomas.winkler@intel.com>2008-05-29 04:35:16 -0400
committerJohn W. Linville <linville@tuxdriver.com>2008-06-03 15:00:25 -0400
commit30e553e3ea3572bee3118fcde36e043c0cb2174c (patch)
tree5cb6bd4634e4dba343b69df0b1971ff275ec25fa /drivers/net/wireless/iwlwifi/iwl-5000.c
parent5083e56326208f9a1d4e597529912004968c77d7 (diff)
iwlwifi: move aggregation code to iwl-tx.c
This patch moves aggregation action code to iwl-tx.c in iwlcore. Signed-off-by: Tomas Winkler <tomas.winkler@intel.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/iwlwifi/iwl-5000.c')
-rw-r--r--drivers/net/wireless/iwlwifi/iwl-5000.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl-5000.c b/drivers/net/wireless/iwlwifi/iwl-5000.c
index 217c6a9596cd..9ef4468327af 100644
--- a/drivers/net/wireless/iwlwifi/iwl-5000.c
+++ b/drivers/net/wireless/iwlwifi/iwl-5000.c
@@ -1193,7 +1193,7 @@ static void iwl5000_rx_reply_tx(struct iwl_priv *priv,
1193 else 1193 else
1194 ieee80211_wake_queue(priv->hw, ampdu_q); 1194 ieee80211_wake_queue(priv->hw, ampdu_q);
1195 } 1195 }
1196 iwl4965_check_empty_hw_queue(priv, sta_id, tid, txq_id); 1196 iwl_txq_check_empty(priv, sta_id, tid, txq_id);
1197 } 1197 }
1198 } else { 1198 } else {
1199#endif /* CONFIG_IWL4965_HT */ 1199#endif /* CONFIG_IWL4965_HT */
@@ -1218,7 +1218,7 @@ static void iwl5000_rx_reply_tx(struct iwl_priv *priv,
1218 (txq_id >= 0) && priv->mac80211_registered) 1218 (txq_id >= 0) && priv->mac80211_registered)
1219 ieee80211_wake_queue(priv->hw, txq_id); 1219 ieee80211_wake_queue(priv->hw, txq_id);
1220 if (tid != MAX_TID_COUNT) 1220 if (tid != MAX_TID_COUNT)
1221 iwl4965_check_empty_hw_queue(priv, sta_id, tid, txq_id); 1221 iwl_txq_check_empty(priv, sta_id, tid, txq_id);
1222 } 1222 }
1223 } 1223 }
1224#endif /* CONFIG_IWL4965_HT */ 1224#endif /* CONFIG_IWL4965_HT */