|
@@ -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)
|
|
|
{
|