Lines Matching defs:tiocm
187 static inline int serial8250_TIOCM_to_MCR(int tiocm)
191 if (tiocm & TIOCM_RTS)
193 if (tiocm & TIOCM_DTR)
195 if (tiocm & TIOCM_OUT1)
197 if (tiocm & TIOCM_OUT2)
199 if (tiocm & TIOCM_LOOP)
207 int tiocm = 0;
210 tiocm |= TIOCM_RTS;
212 tiocm |= TIOCM_DTR;
214 tiocm |= TIOCM_OUT1;
216 tiocm |= TIOCM_OUT2;
218 tiocm |= TIOCM_LOOP;
220 return tiocm;
226 int tiocm = 0;
229 tiocm |= TIOCM_CAR;
231 tiocm |= TIOCM_RNG;
233 tiocm |= TIOCM_DSR;
235 tiocm |= TIOCM_CTS;
237 return tiocm;