Searched defs:tx_put (Results 1 - 3 of 3) sorted by relevance

/drivers/tty/
H A Dcyclades.c1028 __u32 tx_put, tx_get, tx_bufsize, tx_bufaddr; local
1034 tx_put = readl(&buf_ctrl->tx_put);
1037 if (tx_put >= tx_get)
1038 char_count = tx_get - tx_put - 1 + tx_bufsize;
1040 char_count = tx_get - tx_put - 1;
1050 cy_writeb(cinfo->base_addr + tx_bufaddr + tx_put, data);
1051 tx_put = (tx_put + 1) & (tx_bufsize - 1);
1058 tx_bufsize - tx_put, min_
1944 __u32 tx_put, tx_get, tx_bufsize; local
[all...]
H A Dsynclinkmp.c169 int tx_put; member in struct:_synclinkmp_info
953 info->max_frame_size - info->tx_put));
957 memcpy(info->tx_buf + info->tx_put, buf, c);
960 info->tx_put += c;
961 if (info->tx_put >= info->max_frame_size)
962 info->tx_put -= info->max_frame_size;
1018 info->tx_buf[info->tx_put++] = ch;
1019 if (info->tx_put >= info->max_frame_size)
1020 info->tx_put -= info->max_frame_size;
1199 info->tx_count = info->tx_put
[all...]
/drivers/char/pcmcia/
H A Dsynclink_cs.c153 int tx_put; member in struct:_mgslpc_info
966 info->tx_count = info->tx_put = info->tx_get = 0;
1371 info->tx_count = info->tx_put = info->tx_get = 0;
1508 info->tx_buf[info->tx_put++] = ch;
1509 info->tx_put &= TXBUFSIZE-1;
1586 TXBUFSIZE - info->tx_put));
1590 memcpy(info->tx_buf + info->tx_put, buf, c);
1593 info->tx_put = (info->tx_put + c) & (TXBUFSIZE-1);
1684 info->tx_count = info->tx_put
[all...]

Completed in 107 milliseconds