Searched refs:xfer_count (Results 1 - 9 of 9) sorted by relevance

/drivers/dma/
H A Dtxx9dmac.c761 size_t xfer_count; local
774 for (offset = 0; offset < len; offset += xfer_count) {
775 xfer_count = min_t(size_t, len - offset, TXX9_DMA_MAX_COUNT);
781 if (xfer_count > 0x100 &&
782 (xfer_count & 0xff) >= 0xfa &&
783 (xfer_count & 0xff) <= 0xff)
784 xfer_count -= 0x20;
786 if (xfer_count > 0x80 &&
787 (xfer_count & 0x7f) >= 0x7e &&
788 (xfer_count
[all...]
H A Dat_hdmac.c584 size_t xfer_count; local
620 for (offset = 0; offset < len; offset += xfer_count << src_width) {
621 xfer_count = min_t(size_t, (len - offset) >> src_width,
630 desc->lli.ctrla = ctrla | xfer_count;
H A Ddw_dmac.c650 size_t xfer_count; local
685 for (offset = 0; offset < len; offset += xfer_count << src_width) {
686 xfer_count = min_t(size_t, (len - offset) >> src_width,
696 desc->lli.ctlhi = xfer_count;
/drivers/net/ethernet/8390/
H A Dhp.c278 int xfer_count = count; local
291 buf[count-1] = inb(nic_base - NIC_OFFSET + HP_DATAPORT), xfer_count++;
301 if (((ring_offset + xfer_count) & 0xff) != (addr & 0xff))
303 dev->name, ring_offset + xfer_count, addr);
H A Dne-h8300.c442 int xfer_count = count; local
471 xfer_count++;
494 if (((ring_offset + xfer_count) & 0xff) == low)
500 dev->name, ring_offset + xfer_count, addr);
H A Dne2.c578 int xfer_count = count; local
603 xfer_count++;
623 if (((ring_offset + xfer_count) & 0xff) == low)
629 dev->name, ring_offset + xfer_count, addr);
H A Dne.c624 int xfer_count = count; local
651 xfer_count++;
674 if (((ring_offset + xfer_count) & 0xff) == low)
680 dev->name, ring_offset + xfer_count, addr);
H A Dpcnet_cs.c1161 int xfer_count = count; local
1182 buf[count-1] = inb(nic_base + PCNET_DATAPORT), xfer_count++;
1195 if (((ring_offset + xfer_count) & 0xff) == (addr & 0xff))
1201 ring_offset + xfer_count, addr);
H A Daxnet_cs.c654 int xfer_count = count; local
665 buf[count-1] = inb(nic_base + AXNET_DATAPORT), xfer_count++;

Completed in 87 milliseconds