Searched refs:ucom_cons_rx_low (Results 1 – 1 of 1) sorted by relevance
95 static unsigned int ucom_cons_rx_low = 0; variable325 ucom_cons_rx_low = 0; in ucom_attach_tty()618 ucom_cons_rx_low = 0; in ucom_close()945 temp = (UCOM_CONS_BUFSIZE - 1) - ucom_cons_rx_high + ucom_cons_rx_low; in ucom_put_data()1391 if (ucom_cons_rx_low != ucom_cons_rx_high) { in tty_usb_read()1395 temp = ucom_cons_rx_high - ucom_cons_rx_low; in tty_usb_read()1402 if (temp > (UCOM_CONS_BUFSIZE - ucom_cons_rx_low)) { in tty_usb_read()1403 unsigned int fisrt_len = (UCOM_CONS_BUFSIZE - ucom_cons_rx_low); in tty_usb_read()1404 ret = usbd_copy_to_user(buffer, buflen, ucom_cons_rx_buf + ucom_cons_rx_low, fisrt_len); in tty_usb_read()1419 ret = usbd_copy_to_user(buffer, buflen, ucom_cons_rx_buf + ucom_cons_rx_low, temp); in tty_usb_read()[all …]