Searched refs:tx_get (Results 1 – 4 of 4) sorted by relevance
/linux-4.4.14/drivers/char/pcmcia/ |
D | synclink_cs.c | 152 int tx_get; member 972 info->tx_count = info->tx_put = info->tx_get = 0; in tx_done() 1022 c = min(2, min_t(int, fifo_count, min(info->tx_count, TXBUFSIZE - info->tx_get))); in tx_ready() 1025 write_reg(info, CHA + TXFIFO, *(info->tx_buf + info->tx_get)); in tx_ready() 1028 *((unsigned short*)(info->tx_buf + info->tx_get))); in tx_ready() 1031 info->tx_get = (info->tx_get + c) & (TXBUFSIZE - 1); in tx_ready() 1375 info->tx_count = info->tx_put = info->tx_get = 0; in mgslpc_program_hw() 1688 info->tx_count = info->tx_put = info->tx_get = 0; in mgslpc_flush_buffer() 1926 info->tx_count = info->tx_put = info->tx_get = 0; in tx_abort() 3875 info->tx_count = info->tx_put = info->tx_get = 0; in tx_timeout() [all …]
|
/linux-4.4.14/drivers/tty/ |
D | cyclades.c | 1019 __u32 tx_put, tx_get, tx_bufsize, tx_bufaddr; in cyz_handle_tx() local 1024 tx_get = readl(&buf_ctrl->tx_get); in cyz_handle_tx() 1028 if (tx_put >= tx_get) in cyz_handle_tx() 1029 char_count = tx_get - tx_put - 1 + tx_bufsize; in cyz_handle_tx() 1031 char_count = tx_get - tx_put - 1; in cyz_handle_tx() 1912 __u32 tx_put, tx_get, tx_bufsize; in cy_chars_in_buffer() local 1914 tx_get = readl(&buf_ctrl->tx_get); in cy_chars_in_buffer() 1917 if (tx_put >= tx_get) in cy_chars_in_buffer() 1918 char_count = tx_put - tx_get; in cy_chars_in_buffer() 1920 char_count = tx_put - tx_get + tx_bufsize; in cy_chars_in_buffer()
|
D | synclinkmp.c | 169 int tx_get; member 1197 info->tx_count = info->tx_put = info->tx_get = 0; in flush_buffer() 2253 info->tx_count = info->tx_put = info->tx_get = 0; in isr_txeom() 2725 info->tx_count = info->tx_put = info->tx_get = 0; in program_hw() 4309 TwoBytes[0] = info->tx_buf[info->tx_get++]; in tx_load_fifo() 4310 if (info->tx_get >= info->max_frame_size) in tx_load_fifo() 4311 info->tx_get -= info->max_frame_size; in tx_load_fifo() 4312 TwoBytes[1] = info->tx_buf[info->tx_get++]; in tx_load_fifo() 4313 if (info->tx_get >= info->max_frame_size) in tx_load_fifo() 4314 info->tx_get -= info->max_frame_size; in tx_load_fifo() [all …]
|
/linux-4.4.14/include/uapi/linux/ |
D | cyclades.h | 426 __u32 tx_get; /* tail index tx buf */ member
|