Symbol: UPSTAT_AUTOCTS
drivers/tty/serial/8250/8250_bcm7271.c
786
p8250->port.status |= UPSTAT_AUTOCTS;
drivers/tty/serial/8250/8250_dwlib.c
49
p->status &= ~UPSTAT_AUTOCTS;
drivers/tty/serial/8250/8250_dwlib.c
51
p->status |= UPSTAT_AUTOCTS;
drivers/tty/serial/8250/8250_omap.c
471
port->status &= ~(UPSTAT_AUTOCTS | UPSTAT_AUTORTS | UPSTAT_AUTOXOFF);
drivers/tty/serial/8250/8250_omap.c
477
port->status |= UPSTAT_AUTOCTS | UPSTAT_AUTORTS;
drivers/tty/serial/8250/8250_port.c
1821
(port->status & (UPSTAT_AUTOCTS | UPSTAT_AUTORTS)) &&
drivers/tty/serial/amba-pl011.c
2046
uap->port.status &= ~(UPSTAT_AUTOCTS | UPSTAT_AUTORTS);
drivers/tty/serial/amba-pl011.c
2264
port->status |= UPSTAT_AUTOCTS | UPSTAT_AUTORTS;
drivers/tty/serial/amba-pl011.c
2267
port->status &= ~(UPSTAT_AUTOCTS | UPSTAT_AUTORTS);
drivers/tty/serial/max310x.c
1006
port->status &= ~(UPSTAT_AUTOCTS | UPSTAT_AUTORTS | UPSTAT_AUTOXOFF);
drivers/tty/serial/max310x.c
1010
port->status |= UPSTAT_AUTOCTS | UPSTAT_AUTORTS;
drivers/tty/serial/omap-serial.c
965
up->port.status &= ~(UPSTAT_AUTOCTS | UPSTAT_AUTORTS | UPSTAT_AUTOXOFF);
drivers/tty/serial/omap-serial.c
969
up->port.status |= UPSTAT_AUTOCTS | UPSTAT_AUTORTS;
drivers/tty/serial/rsci.c
309
port->status &= ~UPSTAT_AUTOCTS;
drivers/tty/serial/rsci.c
313
port->status |= UPSTAT_AUTOCTS;
drivers/tty/serial/samsung_tty.c
1566
port->status &= ~UPSTAT_AUTOCTS;
drivers/tty/serial/samsung_tty.c
1573
port->status = UPSTAT_AUTOCTS;
drivers/tty/serial/sc16is7xx.c
1040
port->status &= ~(UPSTAT_AUTOCTS | UPSTAT_AUTORTS);
drivers/tty/serial/sc16is7xx.c
1044
port->status |= UPSTAT_AUTOCTS | UPSTAT_AUTORTS;
drivers/tty/serial/sh-sci.c
2869
port->status &= ~UPSTAT_AUTOCTS;
drivers/tty/serial/sh-sci.c
2878
port->status |= UPSTAT_AUTOCTS;
drivers/tty/serial/stm32-usart.c
1267
port->status &= ~(UPSTAT_AUTOCTS | UPSTAT_AUTORTS);
drivers/tty/serial/stm32-usart.c
1269
port->status |= UPSTAT_AUTOCTS | UPSTAT_AUTORTS;
include/linux/serial_core.h
1163
upstat_t mask = UPSTAT_CTS_ENABLE | UPSTAT_AUTOCTS;