Home
last modified time | relevance | path

Searched refs:GB_UART_CTRL_RTS (Results 1 – 2 of 2) sorted by relevance

/linux-6.1.9/drivers/staging/greybus/
Duart.c504 newctrl &= ~(GB_UART_CTRL_DTR | GB_UART_CTRL_RTS); in gb_tty_set_termios()
506 newctrl |= (GB_UART_CTRL_DTR | GB_UART_CTRL_RTS); in gb_tty_set_termios()
530 (gb_tty->ctrlout & GB_UART_CTRL_RTS ? TIOCM_RTS : 0) | in gb_tty_tiocmget()
544 (set & TIOCM_RTS ? GB_UART_CTRL_RTS : 0); in gb_tty_tiocmset()
546 (clear & TIOCM_RTS ? GB_UART_CTRL_RTS : 0); in gb_tty_tiocmset()
570 gb_tty->ctrlout &= ~GB_UART_CTRL_RTS; in gb_tty_throttle()
589 gb_tty->ctrlout |= GB_UART_CTRL_RTS; in gb_tty_unthrottle()
713 newctrl |= (GB_UART_CTRL_DTR | GB_UART_CTRL_RTS); in gb_tty_dtr_rts()
715 newctrl &= ~(GB_UART_CTRL_DTR | GB_UART_CTRL_RTS); in gb_tty_dtr_rts()
/linux-6.1.9/include/linux/greybus/
Dgreybus_protocols.h1345 #define GB_UART_CTRL_RTS 0x02 macro