Home
last modified time | relevance | path

Searched refs:ATH12K_TX_COMPL_NEXT (Results 1 – 2 of 2) sorted by relevance

/openbmc/linux/drivers/net/wireless/ath/ath12k/
H A Ddp_tx.c550 while (ATH12K_TX_COMPL_NEXT(tx_ring->tx_status_head) != tx_ring->tx_status_tail) { in ath12k_dp_tx_completion_handler()
558 ATH12K_TX_COMPL_NEXT(tx_ring->tx_status_head); in ath12k_dp_tx_completion_handler()
562 (ATH12K_TX_COMPL_NEXT(tx_ring->tx_status_head) == tx_ring->tx_status_tail)) { in ath12k_dp_tx_completion_handler()
571 while (ATH12K_TX_COMPL_NEXT(tx_ring->tx_status_tail) != tx_ring->tx_status_head) { in ath12k_dp_tx_completion_handler()
576 ATH12K_TX_COMPL_NEXT(tx_ring->tx_status_tail); in ath12k_dp_tx_completion_handler()
H A Ddp.h42 #define ATH12K_TX_COMPL_NEXT(x) (((x) + 1) % DP_TX_COMP_RING_SIZE) macro