Searched refs:tx_out (Results 1 - 6 of 6) sorted by relevance

/linux-master/drivers/net/wan/
H A Dwanxl.c59 int tx_in, tx_out; member in struct:port
288 desc = &get_status(port)->tx_descs[port->tx_out];
304 port->tx_skbs[port->tx_out] = skb;
312 port->tx_out = (port->tx_out + 1) % TX_BUFFERS;
314 if (get_status(port)->tx_descs[port->tx_out].stat != PACKET_EMPTY) {
409 port->tx_in = port->tx_out = 0;
H A Dwanxlfw.S297 clrl tx_out(%d0)
451 movel tx_out(%d0), %d1
452 movel %d1, %d2 // D1 = D2 = tx_out BD# = desc#
462 addl tx_first_bd(%d0), %d1 // D1 = current tx_out BD addr
470 // update tx_out and tx_count
471 movel tx_out(%d0), %d1
476 tx_1: movel %d1, tx_out(%d0)
884 tx_out: .long 0, 0, 0, 0 // received from host for transmission label
H A Dfsl_qmc_hdlc.c45 unsigned int tx_out; member in struct:qmc_hdlc
372 desc = &qmc_hdlc->tx_descs[qmc_hdlc->tx_out];
396 qmc_hdlc->tx_out = (qmc_hdlc->tx_out + 1) % ARRAY_SIZE(qmc_hdlc->tx_descs);
398 if (qmc_hdlc->tx_descs[qmc_hdlc->tx_out].skb)
/linux-master/drivers/crypto/
H A Domap-des.c377 struct dma_async_tx_descriptor *tx_in, *tx_out; local
429 tx_out = dmaengine_prep_slave_sg(dd->dma_lch_out, out_sg, out_sg_len,
432 if (!tx_out) {
437 tx_out->callback = omap_des_dma_out_callback;
438 tx_out->callback_param = dd;
441 dmaengine_submit(tx_out);
H A Domap-aes.c270 struct dma_async_tx_descriptor *tx_in, *tx_out = NULL, *cb_desc; local
325 tx_out = dmaengine_prep_slave_sg(dd->dma_lch_out, out_sg,
329 if (!tx_out) {
334 cb_desc = tx_out;
347 if (tx_out)
348 dmaengine_submit(tx_out);
H A Dsa2ul.c1093 struct dma_async_tx_descriptor *tx_out; local
1260 tx_out = dmaengine_prep_slave_sg(pdata->dma_tx, src,
1264 if (!tx_out) {
1274 mdptr = (u32 *)dmaengine_desc_get_metadata_ptr(tx_out, &pl, &ml);
1281 dmaengine_desc_set_metadata_len(tx_out, req->mdata_size);
1283 dmaengine_submit(tx_out);

Completed in 222 milliseconds