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()1511 if (info->tx_count < TXBUFSIZE - 1) { in mgslpc_put_char()1513 info->tx_put &= TXBUFSIZE-1; in mgslpc_put_char()1577 if (count > TXBUFSIZE) { in mgslpc_write()1589 min(TXBUFSIZE - info->tx_count - 1, in mgslpc_write()1590 TXBUFSIZE - info->tx_put)); in mgslpc_write()1597 info->tx_put = (info->tx_put + c) & (TXBUFSIZE-1); in mgslpc_write()1636 ret = TXBUFSIZE - info->tx_count - 1; in mgslpc_write_room()