Lines Matching defs:termios
359 struct ktermios *termios,
371 baud = uart_get_baud_rate(port, termios, old, 900, 921600);
373 if (tty_termios_baud_rate(termios))
374 tty_termios_encode_baud_rate(termios, baud, baud);
379 if (termios->c_cflag & PARENB) {
381 termios->c_cflag &= ~CMSPAR;
382 if (termios->c_cflag & PARODD)
388 switch (termios->c_cflag & CSIZE) {
394 termios->c_cflag &= ~CSIZE;
395 termios->c_cflag |= CS8;
401 if (termios->c_cflag & CSTOPB)
413 if (termios->c_iflag & IGNPAR)
416 uart_update_timeout(port, termios->c_cflag, baud);
430 if (UART_ENABLE_MS(&vt8500_port->uart, termios->c_cflag))