Lines Matching refs:to_send
783 unsigned int txlen, to_send, until_end;
796 to_send = uart_circ_chars_pending(xmit);
798 if (likely(to_send)) {
802 to_send = (to_send > txlen) ? txlen : to_send;
804 if (until_end < to_send) {
808 max310x_batch_write(port, xmit->buf, to_send - until_end);
810 max310x_batch_write(port, xmit->buf + xmit->tail, to_send);
812 uart_xmit_advance(port, to_send);