Home
last modified time | relevance | path

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

/kernel/linux/linux-5.10/drivers/tty/serial/8250/
D8250.h166 static inline int serial8250_TIOCM_to_MCR(int tiocm) in serial8250_TIOCM_to_MCR() argument
170 if (tiocm & TIOCM_RTS) in serial8250_TIOCM_to_MCR()
172 if (tiocm & TIOCM_DTR) in serial8250_TIOCM_to_MCR()
174 if (tiocm & TIOCM_OUT1) in serial8250_TIOCM_to_MCR()
176 if (tiocm & TIOCM_OUT2) in serial8250_TIOCM_to_MCR()
178 if (tiocm & TIOCM_LOOP) in serial8250_TIOCM_to_MCR()
186 int tiocm = 0; in serial8250_MCR_to_TIOCM() local
189 tiocm |= TIOCM_RTS; in serial8250_MCR_to_TIOCM()
191 tiocm |= TIOCM_DTR; in serial8250_MCR_to_TIOCM()
193 tiocm |= TIOCM_OUT1; in serial8250_MCR_to_TIOCM()
[all …]
/kernel/linux/linux-5.10/drivers/staging/fwserial/
Dfwserial.c1346 unsigned int tiocm; in fwtty_tiocmget() local
1349 tiocm = (port->mctrl & MCTRL_MASK) | (port->mstatus & ~MCTRL_MASK); in fwtty_tiocmget()
1352 fwtty_dbg(port, "%x\n", tiocm); in fwtty_tiocmget()
1354 return tiocm; in fwtty_tiocmget()