Lines Matching defs:active
730 /* RTS# is output, active low, unless autorts */
749 /* RTS# is always output; and active low, unless autorts */
1299 int active, count = 0;
1301 dev_dbg(port->dev, "%s(%d) active cookie %d\n", __func__, port->line,
1306 active = sci_dma_rx_find_active(s);
1307 if (active >= 0)
1308 count = sci_dma_rx_push(s, s->rx_buf[active], s->buf_len_rx);
1315 desc = dmaengine_prep_slave_sg(s->chan_rx, &s->sg_rx[active], 1,
1323 s->cookie_rx[active] = dmaengine_submit(desc);
1324 if (dma_submit_error(s->cookie_rx[active]))
1327 s->active_rx = s->cookie_rx[!active];
1332 dev_dbg(port->dev, "%s: cookie %d #%d, new active cookie %d\n",
1333 __func__, s->cookie_rx[active], active, s->active_rx);
1479 int active, count;
1485 active = sci_dma_rx_find_active(s);
1486 if (active < 0) {
1495 s->active_rx, active);
1518 read = sg_dma_len(&s->sg_rx[active]) - state.residue;
1521 count = sci_dma_rx_push(s, s->rx_buf[active], read);