diff options
author | Emmanuel Grumbach <emmanuel.grumbach@intel.com> | 2011-11-21 06:25:31 -0500 |
---|---|---|
committer | Wey-Yi Guy <wey-yi.w.guy@intel.com> | 2011-12-16 10:23:10 -0500 |
commit | 34b5321e4f8bb71fd9b2190d6aad4646486c4ba6 (patch) | |
tree | fd18cc577434df6a521d5475fa88d2ef4922313a /drivers/net/wireless/iwlwifi/iwl-trans.h | |
parent | 76bc10fcd128ad028cf77c62e179cd20dc2ffecf (diff) |
iwlwifi: tid_data logic move to upper layer - seq_number
The tid_data is not related to the transport layer, so move
the logic that depends on it to the upper layer.
This patch deals with the seq_number.
Signed-off-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
Signed-off-by: Wey-Yi Guy <wey-yi.w.guy@intel.com>
Diffstat (limited to 'drivers/net/wireless/iwlwifi/iwl-trans.h')
-rw-r--r-- | drivers/net/wireless/iwlwifi/iwl-trans.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl-trans.h b/drivers/net/wireless/iwlwifi/iwl-trans.h index 8658ce205b13..e6bf3f554772 100644 --- a/drivers/net/wireless/iwlwifi/iwl-trans.h +++ b/drivers/net/wireless/iwlwifi/iwl-trans.h | |||
@@ -178,7 +178,7 @@ struct iwl_trans_ops { | |||
178 | 178 | ||
179 | int (*tx)(struct iwl_trans *trans, struct sk_buff *skb, | 179 | int (*tx)(struct iwl_trans *trans, struct sk_buff *skb, |
180 | struct iwl_device_cmd *dev_cmd, enum iwl_rxon_context_id ctx, | 180 | struct iwl_device_cmd *dev_cmd, enum iwl_rxon_context_id ctx, |
181 | u8 sta_id); | 181 | u8 sta_id, u8 tid); |
182 | int (*reclaim)(struct iwl_trans *trans, int sta_id, int tid, | 182 | int (*reclaim)(struct iwl_trans *trans, int sta_id, int tid, |
183 | int txq_id, int ssn, u32 status, | 183 | int txq_id, int ssn, u32 status, |
184 | struct sk_buff_head *skbs); | 184 | struct sk_buff_head *skbs); |
@@ -303,9 +303,9 @@ int iwl_trans_send_cmd_pdu(struct iwl_trans *trans, u8 id, | |||
303 | 303 | ||
304 | static inline int iwl_trans_tx(struct iwl_trans *trans, struct sk_buff *skb, | 304 | static inline int iwl_trans_tx(struct iwl_trans *trans, struct sk_buff *skb, |
305 | struct iwl_device_cmd *dev_cmd, enum iwl_rxon_context_id ctx, | 305 | struct iwl_device_cmd *dev_cmd, enum iwl_rxon_context_id ctx, |
306 | u8 sta_id) | 306 | u8 sta_id, u8 tid) |
307 | { | 307 | { |
308 | return trans->ops->tx(trans, skb, dev_cmd, ctx, sta_id); | 308 | return trans->ops->tx(trans, skb, dev_cmd, ctx, sta_id, tid); |
309 | } | 309 | } |
310 | 310 | ||
311 | static inline int iwl_trans_reclaim(struct iwl_trans *trans, int sta_id, | 311 | static inline int iwl_trans_reclaim(struct iwl_trans *trans, int sta_id, |