Searched defs:to_send (Results 1 - 3 of 3) sorted by relevance

/drivers/staging/nvec/
H A Dnvec.c585 unsigned char to_send = 0xff; local
645 to_send = nvec->tx->data[0];
662 to_send = nvec->tx->data[nvec->tx->pos++];
699 writel(to_send, nvec->base + I2C_SL_RCVD);
710 to_send,
/drivers/tty/serial/
H A Dsc16is7xx.c555 unsigned int txlen, to_send, i; local
568 to_send = uart_circ_chars_pending(xmit);
569 if (likely(to_send)) {
572 to_send = (to_send > txlen) ? txlen : to_send;
575 port->icount.tx += to_send;
578 for (i = 0; i < to_send; ++i) {
583 regmap_raw_write(s->regmap, SC16IS7XX_THR_REG, s->buf, to_send);
H A Dmax310x.c650 unsigned int txlen, to_send; local
663 to_send = uart_circ_chars_pending(xmit);
664 if (likely(to_send)) {
668 to_send = (to_send > txlen) ? txlen : to_send;
671 port->icount.tx += to_send;
672 while (to_send--) {

Completed in 184 milliseconds