Lines Matching refs:to_send
389 static void sc16is7xx_fifo_write(struct uart_port *port, u8 to_send)
398 if (unlikely(!to_send))
401 regmap_noinc_write(one->regmap, SC16IS7XX_THR_REG, s->buf, to_send);
634 unsigned int txlen, to_send, i;
652 to_send = uart_circ_chars_pending(xmit);
653 if (likely(to_send)) {
662 to_send = (to_send > txlen) ? txlen : to_send;
665 for (i = 0; i < to_send; ++i) {
670 sc16is7xx_fifo_write(port, to_send);