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

/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/drivers/char/
H A Dcyclades.c1033 __u32 tx_put, tx_get, tx_bufsize, tx_bufaddr; local
1039 tx_put = readl(&buf_ctrl->tx_put);
1042 if (tx_put >= tx_get)
1043 char_count = tx_get - tx_put - 1 + tx_bufsize;
1045 char_count = tx_get - tx_put - 1;
1055 cy_writeb(cinfo->base_addr + tx_bufaddr + tx_put, data);
1056 tx_put = (tx_put + 1) & (tx_bufsize - 1);
1063 tx_bufsize - tx_put, min_
2377 __u32 tx_put, tx_get, tx_bufsize; local
[all...]
H A Dsynclinkmp.c175 int tx_put; member in struct:_synclinkmp_info
1017 info->max_frame_size - info->tx_put));
1021 memcpy(info->tx_buf + info->tx_put, buf, c);
1024 info->tx_put += c;
1025 if (info->tx_put >= info->max_frame_size)
1026 info->tx_put -= info->max_frame_size;
1081 info->tx_buf[info->tx_put++] = ch;
1082 if (info->tx_put >= info->max_frame_size)
1083 info->tx_put -= info->max_frame_size;
1258 info->tx_count = info->tx_put
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/drivers/char/pcmcia/
H A Dsynclink_cs.c161 int tx_put; member in struct:_mgslpc_info
1041 info->tx_count = info->tx_put = info->tx_get = 0;
1444 info->tx_count = info->tx_put = info->tx_get = 0;
1581 info->tx_buf[info->tx_put++] = ch;
1582 info->tx_put &= TXBUFSIZE-1;
1658 TXBUFSIZE - info->tx_put));
1662 memcpy(info->tx_buf + info->tx_put, buf, c);
1665 info->tx_put = (info->tx_put + c) & (TXBUFSIZE-1);
1756 info->tx_count = info->tx_put
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/include/linux/
H A Dcyclades.h445 __u32 tx_put; /* head index tx buf */ member in struct:BUF_CTRL

Completed in 179 milliseconds