Home
last modified time | relevance | path

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

/Linux-v5.10/include/uapi/linux/
Dcyclades.h432 __u32 rx_get; /* tail index rx buf */ member
/Linux-v5.10/drivers/tty/
Dcyclades.c930 __u32 rx_put, rx_get, new_rx_get, rx_bufsize, rx_bufaddr; in cyz_handle_rx() local
932 rx_get = new_rx_get = readl(&buf_ctrl->rx_get); in cyz_handle_rx()
936 if (rx_put >= rx_get) in cyz_handle_rx()
937 char_count = rx_put - rx_get; in cyz_handle_rx()
939 char_count = rx_put - rx_get + rx_bufsize; in cyz_handle_rx()
990 if (rx_put >= rx_get) in cyz_handle_rx()
991 char_count = rx_put - rx_get; in cyz_handle_rx()
993 char_count = rx_put - rx_get + rx_bufsize; in cyz_handle_rx()
1002 cy_writel(&buf_ctrl->rx_get, new_rx_get); in cyz_handle_rx()
/Linux-v5.10/drivers/char/pcmcia/
Dsynclink_cs.c160 int rx_get; /* index of next full rx buffer */ member
3620 info->rx_get = 0; in rx_reset_buffers()
3644 buf = (RXBUF*)(info->rx_buf + (info->rx_get * info->rx_buf_size)); in rx_get_frame()
3709 info->rx_get++; in rx_get_frame()
3710 if (info->rx_get >= info->rx_buf_count) in rx_get_frame()
3711 info->rx_get = 0; in rx_get_frame()