Lines Matching defs:termios
221 struct ktermios *termios)
227 (termios->c_line == N_IRDA) ? SYSCON1_SIREN : 0);
253 struct ktermios *termios,
259 /* Mask termios capabilities we don't support */
260 termios->c_cflag &= ~CMSPAR;
261 termios->c_iflag &= ~(BRKINT | IGNBRK);
264 baud = uart_get_baud_rate(port, termios, old, port->uartclk / 4096,
268 switch (termios->c_cflag & CSIZE) {
284 if (termios->c_cflag & CSTOPB)
287 if (termios->c_cflag & PARENB) {
289 if (!(termios->c_cflag & PARODD))
298 if (termios->c_iflag & INPCK)
303 if (!(termios->c_cflag & CREAD))
307 uart_update_timeout(port, termios->c_cflag, baud);