Searched refs:ucom_cons_tx_low (Results 1 – 1 of 1) sorted by relevance
98 static unsigned int ucom_cons_tx_low = 0; variable327 ucom_cons_tx_low = 0; in ucom_attach_tty()621 ucom_cons_tx_low = 0; in ucom_close()910 temp = ucom_cons_tx_high - ucom_cons_tx_low; in ucom_get_data()917 if (temp > (UCOM_CONS_BUFSIZE - ucom_cons_tx_low)){ in ucom_get_data()918 unsigned int fisrt_len = (UCOM_CONS_BUFSIZE - ucom_cons_tx_low); in ucom_get_data()919 usbd_copy_in(pc, offset, ucom_cons_tx_buf + ucom_cons_tx_low, fisrt_len); in ucom_get_data()923 usbd_copy_in(pc, offset, ucom_cons_tx_buf + ucom_cons_tx_low, temp); in ucom_get_data()926 ucom_cons_tx_low += temp; in ucom_get_data()927 ucom_cons_tx_low %= UCOM_CONS_BUFSIZE; in ucom_get_data()[all …]