Lines Matching refs:txfifo
165 struct TxFifo txfifo; /* transmit fifo -- size will be maxTxCredits */ member
986 edge_port->txfifo.head = 0; in edge_open()
987 edge_port->txfifo.tail = 0; in edge_open()
988 edge_port->txfifo.count = 0; in edge_open()
989 edge_port->txfifo.size = edge_port->maxTxCredits; in edge_open()
990 edge_port->txfifo.fifo = kmalloc(edge_port->maxTxCredits, GFP_KERNEL); in edge_open()
992 if (!edge_port->txfifo.fifo) { in edge_open()
1084 struct TxFifo *fifo = &edge_port->txfifo; in block_until_tx_empty()
1177 kfree(edge_port->txfifo.fifo); in edge_close()
1178 edge_port->txfifo.fifo = NULL; in edge_close()
1203 fifo = &edge_port->txfifo; in edge_write()
1288 struct TxFifo *fifo = &edge_port->txfifo; in send_more_port_data()
1420 room = edge_port->txCredits - edge_port->txfifo.count; in edge_write_room()
1456 edge_port->txfifo.count; in edge_chars_in_buffer()
1580 edge_port->txfifo.count == 0) { in get_lsr_info()