Home
last modified time | relevance | path

Searched refs:TXBUFSIZE (Results 1 – 1 of 1) sorted by relevance

/linux-6.1.9/drivers/char/pcmcia/
Dsynclink_cs.c236 #define TXBUFSIZE 4096 macro
1020 c = min(2, min_t(int, fifo_count, min(info->tx_count, TXBUFSIZE - info->tx_get))); in tx_ready()
1029 info->tx_get = (info->tx_get + c) & (TXBUFSIZE - 1); in tx_ready()
1498 if (info->tx_count < TXBUFSIZE - 1) { in mgslpc_put_char()
1500 info->tx_put &= TXBUFSIZE-1; in mgslpc_put_char()
1564 if (count > TXBUFSIZE) { in mgslpc_write()
1576 min(TXBUFSIZE - info->tx_count - 1, in mgslpc_write()
1577 TXBUFSIZE - info->tx_put)); in mgslpc_write()
1584 info->tx_put = (info->tx_put + c) & (TXBUFSIZE-1); in mgslpc_write()
1623 ret = TXBUFSIZE - info->tx_count - 1; in mgslpc_write_room()