Home
last modified time | relevance | path

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

/linux-5.19.10/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()
529 return (gb_tty->ctrlout & GB_UART_CTRL_DTR ? TIOCM_DTR : 0) | in gb_tty_tiocmget()
543 set = (set & TIOCM_DTR ? GB_UART_CTRL_DTR : 0) | in gb_tty_tiocmset()
545 clear = (clear & TIOCM_DTR ? GB_UART_CTRL_DTR : 0) | in gb_tty_tiocmset()
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-5.19.10/include/linux/greybus/
Dgreybus_protocols.h1344 #define GB_UART_CTRL_DTR 0x01 macro