Home
last modified time | relevance | path

Searched refs:txfree (Results 1 – 3 of 3) sorted by relevance

/linux/drivers/tty/serial/
H A Dmen_z135_uart.c298 unsigned int n, txfree; in men_z135_handle_tx() local
324 txfree = MEN_Z135_FIFO_WATERMARK - txc; in men_z135_handle_tx()
325 if (txfree <= 0) { in men_z135_handle_tx()
328 txfree, qlen); in men_z135_handle_tx()
337 else if (qlen > txfree) in men_z135_handle_tx()
338 n = txfree; in men_z135_handle_tx()
/linux/drivers/net/wireless/broadcom/b43legacy/
H A Dpio.c213 list_move(&packet->list, &queue->txfree); in free_txpacket()
311 list_add(&packet->list, &queue->txfree); in setup_txqueues()
331 INIT_LIST_HEAD(&queue->txfree); in b43legacy_setup_pioqueue()
459 B43legacy_WARN_ON(list_empty(&queue->txfree)); in b43legacy_pio_tx()
461 packet = list_entry(queue->txfree.next, struct b43legacy_pio_txpacket, in b43legacy_pio_tx()
H A Dpio.h68 struct list_head txfree; member