Searched refs:tx_resp (Results 1 - 4 of 4) sorted by relevance

/haiku/src/add-ons/kernel/drivers/network/wlan/idualwifi7260/dev/pci/
H A Dif_iwm.c5635 struct iwm_tx_resp *tx_resp = (void *)pkt->data; local
5636 int status = le16toh(tx_resp->status.status) & IWM_TX_STATUS_MSK;
5637 uint32_t initial_rate = le32toh(tx_resp->initial_rate);
5640 KASSERT(tx_resp->frame_count == 1);
5666 if (tx_resp->failure_frame > 0)
5676 tx_resp->failure_frame, txfail);
5682 tx_resp->failure_frame, txfail);
5858 struct iwm_tx_resp *tx_resp = (void *)pkt->data; local
5866 if (sizeof(*tx_resp) > len)
5868 if (qid < IWM_FIRST_AGG_TX_QUEUE && tx_resp
[all...]
H A Dif_iwmreg.h5219 * @tx_resp: the Tx response from the fw (agg or non-agg)
5230 static inline uint32_t iwm_get_scd_ssn(struct iwm_tx_resp *tx_resp) argument
5232 return le32_to_cpup((uint32_t *)&tx_resp->status +
5233 tx_resp->frame_count) & 0xfff;
/haiku/src/add-ons/kernel/drivers/network/wlan/iaxwifi200/dev/pci/
H A Dif_iwx.c5366 struct iwx_tx_resp *tx_resp = (void *)pkt->data; local
5374 if (sizeof(*tx_resp) > len)
5376 if (qid < IWX_FIRST_AGG_TX_QUEUE && tx_resp->frame_count > 1)
5378 if (qid >= IWX_FIRST_AGG_TX_QUEUE && sizeof(*tx_resp) + sizeof(ssn) +
5379 tx_resp->frame_count * sizeof(tx_resp->status) > len)
5384 if (tx_resp->frame_count > 1) /* A-MPDU */
5387 status = le16toh(tx_resp->status.status) & IWX_TX_STATUS_MSK;
5399 memcpy(&ssn, &tx_resp->status + tx_resp
[all...]
H A Dif_iwxreg.h6265 * @tx_resp: the Tx response from the fw (agg or non-agg)
6276 static inline uint32_t iwx_get_scd_ssn(struct iwx_tx_resp *tx_resp) argument
6278 return le32_to_cpup((uint32_t *)&tx_resp->status +
6279 tx_resp->frame_count) & 0xfff;

Completed in 293 milliseconds