Searched refs:TXBUFSIZE (Results 1 – 1 of 1) sorted by relevance
236 #define TXBUFSIZE 4096 macro1022 c = min(2, min_t(int, fifo_count, min(info->tx_count, TXBUFSIZE - info->tx_get))); in tx_ready()1031 info->tx_get = (info->tx_get + c) & (TXBUFSIZE - 1); in tx_ready()1504 if (info->tx_count < TXBUFSIZE - 1) { in mgslpc_put_char()1506 info->tx_put &= TXBUFSIZE-1; in mgslpc_put_char()1570 if (count > TXBUFSIZE) { in mgslpc_write()1582 min(TXBUFSIZE - info->tx_count - 1, in mgslpc_write()1583 TXBUFSIZE - info->tx_put)); in mgslpc_write()1590 info->tx_put = (info->tx_put + c) & (TXBUFSIZE-1); in mgslpc_write()1629 ret = TXBUFSIZE - info->tx_count - 1; in mgslpc_write_room()