Home
last modified time | relevance | path

Searched refs:rx_get (Results 1 – 3 of 3) sorted by relevance

/linux-4.4.14/include/uapi/linux/
Dcyclades.h431 __u32 rx_get; /* tail index rx buf */ member
/linux-4.4.14/drivers/tty/
Dcyclades.c932 __u32 rx_put, rx_get, new_rx_get, rx_bufsize, rx_bufaddr; in cyz_handle_rx() local
934 rx_get = new_rx_get = readl(&buf_ctrl->rx_get); in cyz_handle_rx()
938 if (rx_put >= rx_get) in cyz_handle_rx()
939 char_count = rx_put - rx_get; in cyz_handle_rx()
941 char_count = rx_put - rx_get + rx_bufsize; in cyz_handle_rx()
992 if (rx_put >= rx_get) in cyz_handle_rx()
993 char_count = rx_put - rx_get; in cyz_handle_rx()
995 char_count = rx_put - rx_get + rx_bufsize; in cyz_handle_rx()
1006 cy_writel(&buf_ctrl->rx_get, new_rx_get); in cyz_handle_rx()
/linux-4.4.14/drivers/char/pcmcia/
Dsynclink_cs.c160 int rx_get; /* index of next full rx buffer */ member
3646 info->rx_get = 0; in rx_reset_buffers()
3670 buf = (RXBUF*)(info->rx_buf + (info->rx_get * info->rx_buf_size)); in rx_get_frame()
3735 info->rx_get++; in rx_get_frame()
3736 if (info->rx_get >= info->rx_buf_count) in rx_get_frame()
3737 info->rx_get = 0; in rx_get_frame()