Home
last modified time | relevance | path

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

/linux-4.4.14/drivers/tty/serial/
Dstm32-usart.c259 if ((mctrl & TIOCM_RTS) && (port->status & UPSTAT_AUTORTS)) in stm32_set_mctrl()
381 port->status &= ~(UPSTAT_AUTOCTS | UPSTAT_AUTORTS); in stm32_set_termios()
383 port->status |= UPSTAT_AUTOCTS | UPSTAT_AUTORTS; in stm32_set_termios()
Domap-serial.c693 if ((mctrl & TIOCM_RTS) && (port->status & UPSTAT_AUTORTS)) in serial_omap_set_mctrl()
1047 up->port.status &= ~(UPSTAT_AUTOCTS | UPSTAT_AUTORTS | UPSTAT_AUTOXOFF); in serial_omap_set_termios()
1051 up->port.status |= UPSTAT_AUTOCTS | UPSTAT_AUTORTS; in serial_omap_set_termios()
Dserial_core.c643 mask |= UPSTAT_AUTORTS; in uart_throttle()
653 if (mask & UPSTAT_AUTORTS) in uart_throttle()
666 mask |= UPSTAT_AUTORTS; in uart_unthrottle()
676 if (mask & UPSTAT_AUTORTS) in uart_unthrottle()
/linux-4.4.14/drivers/tty/serial/8250/
D8250_omap.c137 if ((mctrl & TIOCM_RTS) && (port->status & UPSTAT_AUTORTS)) in omap8250_set_mctrl()
442 up->port.status &= ~(UPSTAT_AUTOCTS | UPSTAT_AUTORTS | UPSTAT_AUTOXOFF); in omap_8250_set_termios()
446 up->port.status |= UPSTAT_AUTOCTS | UPSTAT_AUTORTS; in omap_8250_set_termios()
/linux-4.4.14/include/linux/
Dserial_core.h227 #define UPSTAT_AUTORTS ((__force upstat_t) (1 << 2)) macro