Searched refs:ucom_cons_rx_high (Results 1 – 1 of 1) sorted by relevance
120 static unsigned int ucom_cons_rx_high = 0; variable444 ucom_cons_rx_high = 0; in ucom_attach_tty()1403 temp = (UCOM_CONS_BUFSIZE - 1) - ucom_cons_rx_high + ucom_cons_rx_low; in ucom_put_data()1408 if (temp > (UCOM_CONS_BUFSIZE - ucom_cons_rx_high)) in ucom_put_data()1409 temp = (UCOM_CONS_BUFSIZE - ucom_cons_rx_high); in ucom_put_data()1416 usbd_copy_out(pc, offset, ucom_cons_rx_buf + ucom_cons_rx_high, temp); in ucom_put_data()1420 ucom_cons_rx_high += temp; in ucom_put_data()1421 ucom_cons_rx_high %= UCOM_CONS_BUFSIZE; in ucom_put_data()1567 if (ucom_cons_rx_low != ucom_cons_rx_high) { in ucom_cngetc()