Lines Matching refs:rxlen
633 static void max310x_handle_rx(struct uart_port *port, unsigned int rxlen) in max310x_handle_rx() argument
651 max310x_batch_read(port, buf, rxlen); in max310x_handle_rx()
653 port->icount.rx += rxlen; in max310x_handle_rx()
662 for (i = 0; i < rxlen; ++i) { in max310x_handle_rx()
667 if (unlikely(rxlen >= port->fifosize)) { in max310x_handle_rx()
671 rxlen = port->fifosize; in max310x_handle_rx()
674 while (rxlen--) { in max310x_handle_rx()
776 unsigned int ists, lsr, rxlen; in max310x_port_irq() local
780 rxlen = max310x_port_read(port, MAX310X_RXFIFOLVL_REG); in max310x_port_irq()
781 if (!ists && !rxlen) in max310x_port_irq()
791 if (rxlen) in max310x_port_irq()
792 max310x_handle_rx(port, rxlen); in max310x_port_irq()