Searched refs:tx_empty (Results 1 - 25 of 91) sorted by relevance

1234

/linux-master/drivers/soc/apple/
H A Dmailbox.h32 struct completion tx_empty; member in struct:apple_mbox
H A Dmailbox.c138 reinit_completion(&mbox->tx_empty);
142 &mbox->tx_empty,
176 complete(&mbox->tx_empty);
355 init_completion(&mbox->tx_empty);
/linux-master/drivers/net/ethernet/apple/
H A Dmace.c57 int tx_empty; member in struct:mace_data
424 for (i = mp->tx_empty; i != mp->tx_fill; ) {
488 mp->tx_empty = 0;
546 if (next == mp->tx_empty) {
580 if (next == mp->tx_empty)
677 i = mp->tx_empty;
781 if (i != mp->tx_empty) {
785 mp->tx_empty = i;
825 cp = mp->tx_cmds + NCMDS_TX * mp->tx_empty;
841 i = mp->tx_empty;
[all...]
H A Dbmac.c74 int tx_empty; member in struct:bmac_data
586 bp->tx_empty = 0;
643 /* bp->tx_empty, bp->tx_fill)); */
647 if (i == bp->tx_empty) {
762 cp = &bp->tx_cmds[bp->tx_empty];
775 if (bp->tx_bufs[bp->tx_empty]) {
777 dev_consume_skb_irq(bp->tx_bufs[bp->tx_empty]);
779 bp->tx_bufs[bp->tx_empty] = NULL;
782 if (++bp->tx_empty >= N_TX_RING)
783 bp->tx_empty
[all...]
/linux-master/drivers/tty/serial/
H A Dpch_uart.c216 int tx_empty; member in struct:eg20t_port
813 int tx_empty; local
819 priv->tx_empty = 1;
824 tx_empty = 1;
829 tx_empty = 0;
837 tx_empty = 0;
840 priv->tx_empty = tx_empty;
842 if (tx_empty) {
868 priv->tx_empty
[all...]
H A Dmax3100.c97 int tx_empty; /* last TX empty bit */ member in struct:max3100_port
211 s->tx_empty = (*rx & MAX3100_T) > 0;
381 return s->tx_empty;
704 .tx_empty = max3100_tx_empty,
H A Dtegra-tcu.c133 .tx_empty = tegra_tcu_uart_tx_empty,
H A Dmpc52xx_uart.c92 unsigned int (*tx_empty)(struct uart_port *port); member in struct:psc_ops
350 .tx_empty = mpc52xx_psc_tx_empty,
380 .tx_empty = mpc52xx_psc_tx_empty,
970 .tx_empty = mpc5125_psc_tx_empty,
1005 .tx_empty = mpc512x_psc_tx_empty,
1045 return psc_ops->tx_empty(port) ? TIOCSER_TEMT : 0;
1343 .tx_empty = mpc52xx_uart_tx_empty,
H A Dmux.c404 .tx_empty = mux_tx_empty,
H A Darc_uart.c455 .tx_empty = arc_serial_tx_empty,
H A D21285.c353 .tx_empty = serial21285_tx_empty,
H A Daltera_jtaguart.c239 .tx_empty = altera_jtaguart_tx_empty,
H A Dapbuart.c298 .tx_empty = apbuart_tx_empty,
H A Desp32_acm.c265 .tx_empty = esp32s3_acm_tx_empty,
H A Dsunhv.c373 .tx_empty = sunhv_tx_empty,
H A Dtimbuart.c383 .tx_empty = timbuart_tx_empty,
H A Dliteuart.c266 .tx_empty = liteuart_tx_empty,
/linux-master/drivers/usb/serial/
H A Df81534.c162 unsigned long tx_empty; member in struct:f81534_port_private
518 if (!test_and_clear_bit(F81534_TX_EMPTY_BIT, &port_priv->tx_empty))
527 set_bit(F81534_TX_EMPTY_BIT, &port_priv->tx_empty);
1103 set_bit(F81534_TX_EMPTY_BIT, &port_priv->tx_empty);
1168 set_bit(F81534_TX_EMPTY_BIT, &port_priv->tx_empty);
1493 return test_bit(F81534_TX_EMPTY_BIT, &port_priv->tx_empty);
1551 .tx_empty = f81534_tx_empty,
H A Df81232.c987 .tx_empty = f81232_tx_empty,
1012 .tx_empty = f81232_tx_empty,
H A Dgeneric.c290 while (!port->serial->type->tx_empty(port)) {
/linux-master/include/linux/
H A Dserial_core.h41 * @tx_empty: ``unsigned int ()(struct uart_port *port)``
375 unsigned int (*tx_empty)(struct uart_port *); member in struct:uart_ops
793 __port->ops->tx_empty(__port)) \
/linux-master/include/linux/usb/
H A Dserial.h284 bool (*tx_empty)(struct usb_serial_port *port); member in struct:usb_serial_driver
/linux-master/drivers/net/wireless/realtek/rtw88/
H A Dsdio.c754 bool tx_empty = true; local
769 tx_empty = false;
775 if (!tx_empty) {
H A Dpci.c606 bool tx_empty = true; local
626 tx_empty = false;
631 if (!tx_empty) {
/linux-master/net/mac80211/
H A Dscan.c895 bool tx_empty = true; local
918 tx_empty = false;
942 if (associated && !tx_empty) {

Completed in 394 milliseconds

1234