Home
last modified time | relevance | path

Searched refs:ts_status (Results 1 – 11 of 11) sorted by relevance

/drivers/net/wireless/ath/ath5k/
Dtrace.h74 __field(u8, ts_status)
83 __entry->ts_status = ts->ts_status;
91 __entry->ts_status, __entry->ts_rssi, __entry->ts_antenna
Ddesc.c469 ts->ts_status = 0; in ath5k_hw_proc_2word_tx_status()
475 ts->ts_status |= AR5K_TXERR_XRETRY; in ath5k_hw_proc_2word_tx_status()
478 ts->ts_status |= AR5K_TXERR_FIFO; in ath5k_hw_proc_2word_tx_status()
481 ts->ts_status |= AR5K_TXERR_FILT; in ath5k_hw_proc_2word_tx_status()
526 ts->ts_status = 0; in ath5k_hw_proc_4word_tx_status()
534 ts->ts_status |= AR5K_TXERR_XRETRY; in ath5k_hw_proc_4word_tx_status()
537 ts->ts_status |= AR5K_TXERR_FIFO; in ath5k_hw_proc_4word_tx_status()
540 ts->ts_status |= AR5K_TXERR_FILT; in ath5k_hw_proc_4word_tx_status()
Dbase.c1600 if (unlikely(ts->ts_status)) { in ath5k_tx_frame_completed()
1602 if (ts->ts_status & AR5K_TXERR_FILT) { in ath5k_tx_frame_completed()
1606 if (ts->ts_status & AR5K_TXERR_XRETRY) in ath5k_tx_frame_completed()
1608 if (ts->ts_status & AR5K_TXERR_FIFO) in ath5k_tx_frame_completed()
Dath5k.h516 u8 ts_status; member
Ddebug.c1028 done ? ' ' : (ts.ts_status == 0) ? '*' : '!'); in ath5k_debug_printtxbuf()
/drivers/net/wireless/ath/ath9k/
Dar9002_mac.c286 ts->ts_status = 0; in ar9002_hw_proc_txdesc()
290 ts->ts_status |= ATH9K_TXERR_XTXOP; in ar9002_hw_proc_txdesc()
307 ts->ts_status |= ATH9K_TX_ACKED; in ar9002_hw_proc_txdesc()
310 ts->ts_status |= ATH9K_TXERR_XRETRY; in ar9002_hw_proc_txdesc()
312 ts->ts_status |= ATH9K_TXERR_FILT; in ar9002_hw_proc_txdesc()
314 ts->ts_status |= ATH9K_TXERR_FIFO; in ar9002_hw_proc_txdesc()
319 ts->ts_status |= ATH9K_TXERR_TIMER_EXPIRED; in ar9002_hw_proc_txdesc()
Dar9003_mac.c377 ts->ts_status = 0; in ar9003_hw_proc_txdesc()
381 ts->ts_status |= ATH9K_TXERR_XTXOP; in ar9003_hw_proc_txdesc()
394 ts->ts_status |= ATH9K_TXERR_XRETRY; in ar9003_hw_proc_txdesc()
396 ts->ts_status |= ATH9K_TXERR_FILT; in ar9003_hw_proc_txdesc()
398 ts->ts_status |= ATH9K_TXERR_FIFO; in ar9003_hw_proc_txdesc()
402 ts->ts_status |= ATH9K_TXERR_TIMER_EXPIRED; in ar9003_hw_proc_txdesc()
Dxmit.c384 bool flush = !!(ts->ts_status & ATH9K_TX_FLUSH); in ath_tx_complete_aggr()
563 if (ts->ts_status & (ATH9K_TXERR_FILT | ATH9K_TXERR_XRETRY)) in ath_tx_complete_aggr()
598 txok = !(ts->ts_status & ATH9K_TXERR_MASK); in ath_tx_process_buffer()
599 flush = !!(ts->ts_status & ATH9K_TX_FLUSH); in ath_tx_process_buffer()
1465 ts.ts_status = ATH9K_TX_FLUSH; in ath_drain_txq_list()
2054 if (ts->ts_status & ATH9K_TXERR_FILT) in ath_tx_complete_buf()
2109 if ((ts->ts_status & ATH9K_TXERR_FILT) == 0 && in ath_tx_rc_status()
2253 sc->beacon.tx_last = !(ts.ts_status & ATH9K_TXERR_MASK); in ath_tx_edma_tasklet()
Ddebug.c754 if (ts->ts_status & ATH9K_TXERR_XRETRY) in ath_debug_stat_tx()
760 if (ts->ts_status & ATH9K_TXERR_FILT) in ath_debug_stat_tx()
762 if (ts->ts_status & ATH9K_TXERR_FIFO) in ath_debug_stat_tx()
764 if (ts->ts_status & ATH9K_TXERR_XTXOP) in ath_debug_stat_tx()
766 if (ts->ts_status & ATH9K_TXERR_TIMER_EXPIRED) in ath_debug_stat_tx()
785 TX_SAMP_DBG(isok) = !!(ts->ts_status & ATH9K_TXERR_MASK); in ath_debug_stat_tx()
Dmac.h103 u8 ts_status; member
Dmain.c1891 sc->beacon.tx_last = !(ts.ts_status & ATH9K_TXERR_MASK); in ath9k_tx_last_beacon()