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

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/char/pcmcia/
H A Dsynclink_cs.c251 #define TXBUFSIZE 4096 macro
1091 c = min(2, min_t(int, fifo_count, min(info->tx_count, TXBUFSIZE - info->tx_get)));
1100 info->tx_get = (info->tx_get + c) & (TXBUFSIZE - 1);
1580 if (info->tx_count < TXBUFSIZE - 1) {
1582 info->tx_put &= TXBUFSIZE-1;
1645 if (count > TXBUFSIZE) {
1657 min(TXBUFSIZE - info->tx_count - 1,
1658 TXBUFSIZE - info->tx_put));
1665 info->tx_put = (info->tx_put + c) & (TXBUFSIZE-1);
1704 ret = TXBUFSIZE
[all...]

Completed in 48 milliseconds