Home
last modified time | relevance | path

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

/openbmc/linux/drivers/tty/serial/jsm/
H A Djsm_tty.c215 if (!channel->ch_equeue) { in jsm_tty_open()
216 channel->ch_equeue = kzalloc(EQUEUESIZE, GFP_KERNEL); in jsm_tty_open()
217 if (!channel->ch_equeue) { in jsm_tty_open()
610 u8 error = ch->ch_equeue[tail + i]; in jsm_input()
H A Djsm_cls.c418 ch->ch_equeue[head] = linestatus & (UART_LSR_BI | UART_LSR_PE in cls_copy_data_from_uart_to_queue()
424 if (ch->ch_equeue[head] & UART_LSR_PE) in cls_copy_data_from_uart_to_queue()
426 if (ch->ch_equeue[head] & UART_LSR_BI) in cls_copy_data_from_uart_to_queue()
428 if (ch->ch_equeue[head] & UART_LSR_FE) in cls_copy_data_from_uart_to_queue()
H A Djsm_neo.c372 memset(ch->ch_equeue + head, 0, n); in neo_copy_data_from_uart_to_queue()
444 ch->ch_rqueue[tail], ch->ch_equeue[tail]); in neo_copy_data_from_uart_to_queue()
452 ch->ch_equeue[head] = (u8) linestatus; in neo_copy_data_from_uart_to_queue()
455 ch->ch_rqueue[head], ch->ch_equeue[head]); in neo_copy_data_from_uart_to_queue()
H A Djsm.h225 u8 *ch_equeue; /* Our error queue buffer - malloc'ed */ member
H A Djsm_driver.c288 kfree(brd->channels[i]->ch_equeue); in jsm_remove_one()