Lines Matching defs:termios
333 struct ktermios *termios,
340 baud = uart_get_baud_rate(port, termios, oldtermios, 0, port->uartclk / 16);
350 switch (termios->c_cflag & CSIZE) {
365 if (termios->c_cflag & CSTOPB)
368 if (termios->c_cflag & PARENB) {
371 if (!(termios->c_cflag & PARODD))
377 uart_update_timeout(port, termios->c_cflag, baud);
380 if (termios->c_iflag & INPCK)
383 if (termios->c_iflag & (BRKINT | PARMRK))
388 if (termios->c_iflag & IGNPAR)
391 if (termios->c_iflag & IGNBRK) {
394 if (termios->c_iflag & IGNPAR)
399 if ((termios->c_cflag & CREAD) == 0) {
413 static void sunplus_set_ldisc(struct uart_port *port, struct ktermios *termios)
415 int new = termios->c_line;