Lines Matching defs:termios
372 struct ktermios *termios,
380 cval = UART_LCR_WLEN(tty_get_char_size(termios->c_cflag));
382 if (termios->c_cflag & CSTOPB)
384 if (termios->c_cflag & PARENB)
386 if (!(termios->c_cflag & PARODD))
388 if (termios->c_cflag & CMSPAR)
394 baud = uart_get_baud_rate(port, termios, old,
409 uart_update_timeout(port, termios->c_cflag, baud);
412 if (termios->c_iflag & INPCK)
414 if (termios->c_iflag & (IGNBRK | PARMRK))
421 if (termios->c_iflag & IGNPAR)
423 if (termios->c_iflag & IGNBRK) {
429 if (termios->c_iflag & IGNPAR)
436 if ((termios->c_cflag & CREAD) == 0)
443 if (UART_ENABLE_MS(&up->port, termios->c_cflag))
477 priv->xon = termios->c_cc[VSTART];
478 priv->xoff = termios->c_cc[VSTOP];
483 if (termios->c_cflag & CRTSCTS && up->port.flags & UPF_HARD_FLOW &&
500 if (termios->c_iflag & IXOFF) {
518 if (tty_termios_baud_rate(termios))
519 tty_termios_encode_baud_rate(termios, baud, baud);
824 struct ktermios *termios,
866 return serial8250_em485_config(port, termios, rs485);