Lines Matching defs:status
95 unsigned int status, flg;
106 status = ch & (UARTDR_FRMERR | UARTDR_PARERR | UARTDR_OVERR);
112 if (unlikely(status)) {
113 if (status & UARTDR_PARERR)
115 else if (status & UARTDR_FRMERR)
117 else if (status & UARTDR_OVERR)
120 status &= port->read_status_mask;
122 if (status & UARTDR_PARERR)
124 else if (status & UARTDR_FRMERR)
126 else if (status & UARTDR_OVERR)
133 if (status & port->ignore_status_mask)
136 uart_insert_char(port, status, UARTDR_OVERR, ch, flg);
296 /* Set read status mask */
301 /* Set status ignore mask */