Lines Matching refs:to_send
384 static void sc16is7xx_fifo_write(struct uart_port *port, u8 to_send)
394 if (unlikely(!to_send))
398 regmap_raw_write(s->regmap, addr, s->buf, to_send);
638 unsigned int txlen, to_send, i;
651 to_send = uart_circ_chars_pending(xmit);
652 if (likely(to_send)) {
661 to_send = (to_send > txlen) ? txlen : to_send;
664 port->icount.tx += to_send;
667 for (i = 0; i < to_send; ++i) {
672 sc16is7xx_fifo_write(port, to_send);