Lines Matching refs:txfifo
87 struct TxFifo txfifo; /* transmit fifo -- size will be maxTxCredits */ member
893 edge_port->txfifo.head = 0; in edge_open()
894 edge_port->txfifo.tail = 0; in edge_open()
895 edge_port->txfifo.count = 0; in edge_open()
896 edge_port->txfifo.size = edge_port->maxTxCredits; in edge_open()
897 edge_port->txfifo.fifo = kmalloc(edge_port->maxTxCredits, GFP_KERNEL); in edge_open()
899 if (!edge_port->txfifo.fifo) { in edge_open()
991 struct TxFifo *fifo = &edge_port->txfifo; in block_until_tx_empty()
1086 kfree(edge_port->txfifo.fifo); in edge_close()
1087 edge_port->txfifo.fifo = NULL; in edge_close()
1112 fifo = &edge_port->txfifo; in edge_write()
1197 struct TxFifo *fifo = &edge_port->txfifo; in send_more_port_data()
1329 room = edge_port->txCredits - edge_port->txfifo.count; in edge_write_room()
1365 edge_port->txfifo.count; in edge_chars_in_buffer()
1494 edge_port->txfifo.count == 0) { in get_lsr_info()