Home
last modified time | relevance | path

Searched refs:tx_empty (Results 1 – 25 of 86) sorted by relevance

1234

/Linux-v5.4/drivers/net/ethernet/apple/
Dbmac.c75 int tx_empty; member
590 bp->tx_empty = 0; in bmac_init_tx_ring()
651 if (i == bp->tx_empty) { in bmac_transmit_packet()
766 cp = &bp->tx_cmds[bp->tx_empty]; in bmac_txdma_intr()
779 if (bp->tx_bufs[bp->tx_empty]) { in bmac_txdma_intr()
781 dev_consume_skb_irq(bp->tx_bufs[bp->tx_empty]); in bmac_txdma_intr()
783 bp->tx_bufs[bp->tx_empty] = NULL; in bmac_txdma_intr()
786 if (++bp->tx_empty >= N_TX_RING) in bmac_txdma_intr()
787 bp->tx_empty = 0; in bmac_txdma_intr()
788 if (bp->tx_empty == bp->tx_fill) in bmac_txdma_intr()
[all …]
Dmace.c58 int tx_empty; member
421 for (i = mp->tx_empty; i != mp->tx_fill; ) { in mace_clean_rings()
485 mp->tx_empty = 0; in mace_open()
543 if (next == mp->tx_empty) { in mace_xmit_start()
577 if (next == mp->tx_empty) in mace_xmit_start()
674 i = mp->tx_empty; in mace_interrupt()
778 if (i != mp->tx_empty) { in mace_interrupt()
782 mp->tx_empty = i; in mace_interrupt()
822 cp = mp->tx_cmds + NCMDS_TX * mp->tx_empty; in mace_tx_timeout()
838 i = mp->tx_empty; in mace_tx_timeout()
[all …]
/Linux-v5.4/drivers/tty/serial/
Dpch_uart.c220 int tx_empty; member
889 int tx_empty; in handle_tx() local
895 priv->tx_empty = 1; in handle_tx()
900 tx_empty = 1; in handle_tx()
904 tx_empty = 0; in handle_tx()
914 tx_empty = 0; in handle_tx()
917 priv->tx_empty = tx_empty; in handle_tx()
919 if (tx_empty) { in handle_tx()
945 priv->tx_empty = 1; in dma_handle_tx()
953 priv->tx_empty = 1; in dma_handle_tx()
[all …]
Dmax3100.c97 int tx_empty; /* last TX empty bit */ member
211 s->tx_empty = (*rx & MAX3100_T) > 0; in max3100_sr()
382 return s->tx_empty; in max3100_tx_empty()
709 .tx_empty = max3100_tx_empty,
Dmpc52xx_uart.c94 int (*tx_empty)(struct uart_port *port); member
352 .tx_empty = mpc52xx_psc_tx_empty,
382 .tx_empty = mpc52xx_psc_tx_empty,
975 .tx_empty = mpc5125_psc_tx_empty,
1010 .tx_empty = mpc512x_psc_tx_empty,
1050 return psc_ops->tx_empty(port) ? TIOCSER_TEMT : 0; in mpc52xx_uart_tx_empty()
1348 .tx_empty = mpc52xx_uart_tx_empty,
Dtegra-tcu.c134 .tx_empty = tegra_tcu_uart_tx_empty,
Dmux.c427 .tx_empty = mux_tx_empty,
D21285.c339 .tx_empty = serial21285_tx_empty,
Dsunhv.c379 .tx_empty = sunhv_tx_empty,
Daltera_jtaguart.c280 .tx_empty = altera_jtaguart_tx_empty,
Dtimbuart.c386 .tx_empty = timbuart_tx_empty,
Darc_uart.c465 .tx_empty = arc_serial_tx_empty,
Dclps711x.c337 .tx_empty = uart_clps711x_tx_empty,
Dapbuart.c330 .tx_empty = apbuart_tx_empty,
Ddigicolor-usart.c368 .tx_empty = digicolor_uart_tx_empty,
Dmps2-uart.c415 .tx_empty = mps2_uart_tx_empty,
Daltera_uart.c418 .tx_empty = altera_uart_tx_empty,
Dvt8500_serial.c588 .tx_empty = vt8500_tx_empty,
Dmcf.c465 .tx_empty = mcf_tx_empty,
Dmilbeaut_usio.c390 .tx_empty = mlb_usio_tx_empty,
/Linux-v5.4/drivers/usb/serial/
Df81534.c162 unsigned long tx_empty; member
520 if (!test_and_clear_bit(F81534_TX_EMPTY_BIT, &port_priv->tx_empty)) in f81534_submit_writer()
529 set_bit(F81534_TX_EMPTY_BIT, &port_priv->tx_empty); in f81534_submit_writer()
1115 set_bit(F81534_TX_EMPTY_BIT, &port_priv->tx_empty); in f81534_open()
1185 set_bit(F81534_TX_EMPTY_BIT, &port_priv->tx_empty); in f81534_process_per_serial_block()
1511 return test_bit(F81534_TX_EMPTY_BIT, &port_priv->tx_empty); in f81534_tx_empty()
1569 .tx_empty = f81534_tx_empty,
Dgeneric.c290 while (!port->serial->type->tx_empty(port)) { in usb_serial_generic_wait_until_sent()
/Linux-v5.4/include/linux/usb/
Dserial.h289 bool (*tx_empty)(struct usb_serial_port *port); member
/Linux-v5.4/net/mac80211/
Dscan.c821 bool tx_empty = true; in ieee80211_scan_state_decision() local
843 tx_empty = false; in ieee80211_scan_state_decision()
868 if (associated && !tx_empty) { in ieee80211_scan_state_decision()
/Linux-v5.4/include/linux/
Dserial_core.h38 unsigned int (*tx_empty)(struct uart_port *); member

1234