diff options
author | Emmanuel Grumbach <emmanuel.grumbach@intel.com> | 2013-04-28 15:05:22 +0400 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2013-05-13 20:10:52 +0400 |
commit | bd5f6a344daff10b58dfefad628e4b203edeb831 (patch) | |
tree | 1be21e3f326fe5abd83b3e361af00122008f6c75 /drivers/net/wireless/iwlwifi/pcie/tx.c | |
parent | f722406faae2d073cc1d01063d1123c35425939e (diff) | |
download | linux-bd5f6a344daff10b58dfefad628e4b203edeb831.tar.xz |
iwlwifi: move BUILD_RAxTID to transport
It has nothing to do in FW API.
Signed-off-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'drivers/net/wireless/iwlwifi/pcie/tx.c')
-rw-r--r-- | drivers/net/wireless/iwlwifi/pcie/tx.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/net/wireless/iwlwifi/pcie/tx.c b/drivers/net/wireless/iwlwifi/pcie/tx.c index c5e30294c5ac..03ad2f417298 100644 --- a/drivers/net/wireless/iwlwifi/pcie/tx.c +++ b/drivers/net/wireless/iwlwifi/pcie/tx.c @@ -1045,6 +1045,10 @@ static inline void iwl_pcie_txq_set_inactive(struct iwl_trans *trans, (1 << SCD_QUEUE_STTS_REG_POS_SCD_ACT_EN)); } +/* Receiver address (actually, Rx station's index into station table), + * combined with Traffic ID (QOS priority), in format used by Tx Scheduler */ +#define BUILD_RAxTID(sta_id, tid) (((sta_id) << 4) + (tid)) + void iwl_trans_pcie_txq_enable(struct iwl_trans *trans, int txq_id, int fifo, int sta_id, int tid, int frame_limit, u16 ssn) { |