Home
last modified time | relevance | path

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

/openbmc/linux/drivers/tty/serial/jsm/
H A Djsm_cls.c312 if (ch->ch_flags & CH_BREAK_SENDING) { in cls_clear_break()
317 ch->ch_flags &= ~(CH_BREAK_SENDING); in cls_clear_break()
463 if ((ch->ch_flags & CH_STOP) || (ch->ch_flags & CH_BREAK_SENDING)) in cls_copy_data_from_queue_to_uart()
911 if (!(ch->ch_flags & CH_BREAK_SENDING)) { in cls_send_break()
915 ch->ch_flags |= (CH_BREAK_SENDING); in cls_send_break()
H A Djsm_neo.c495 if ((ch->ch_flags & CH_STOP) || (ch->ch_flags & CH_BREAK_SENDING)) in neo_copy_data_from_queue_to_uart()
688 if (ch->ch_flags & CH_BREAK_SENDING) { in neo_clear_break()
692 ch->ch_flags &= ~(CH_BREAK_SENDING); in neo_clear_break()
1341 if (!(ch->ch_flags & CH_BREAK_SENDING)) { in neo_send_break()
1344 ch->ch_flags |= (CH_BREAK_SENDING); in neo_send_break()
H A Djsm.h178 #define CH_BREAK_SENDING 0x1000 /* Break is being sent */ macro