Lines Matching refs:txfifo
90 struct TxFifo txfifo; /* transmit fifo -- size will be maxTxCredits */ member
896 edge_port->txfifo.head = 0; in edge_open()
897 edge_port->txfifo.tail = 0; in edge_open()
898 edge_port->txfifo.count = 0; in edge_open()
899 edge_port->txfifo.size = edge_port->maxTxCredits; in edge_open()
900 edge_port->txfifo.fifo = kmalloc(edge_port->maxTxCredits, GFP_KERNEL); in edge_open()
902 if (!edge_port->txfifo.fifo) { in edge_open()
996 struct TxFifo *fifo = &edge_port->txfifo; in block_until_tx_empty()
1091 kfree(edge_port->txfifo.fifo); in edge_close()
1092 edge_port->txfifo.fifo = NULL; in edge_close()
1117 fifo = &edge_port->txfifo; in edge_write()
1203 struct TxFifo *fifo = &edge_port->txfifo; in send_more_port_data()
1341 room = edge_port->txCredits - edge_port->txfifo.count; in edge_write_room()
1377 edge_port->txfifo.count; in edge_chars_in_buffer()
1507 edge_port->txfifo.count == 0) { in get_lsr_info()