Searched defs:obaud (Results 1 - 1 of 1) sorted by relevance

/drivers/tty/
H A Dtty_ioctl.c390 speed_t ibaud, speed_t obaud)
394 int iclose = ibaud/50, oclose = obaud/50;
397 if (obaud == 0) /* CD dropped */
401 termios->c_ospeed = obaud;
425 if (obaud - oclose <= baud_table[i] &&
426 obaud + oclose >= baud_table[i]) {
454 if (ifound == -1 && (ibaud != obaud || ibinput))
475 void tty_encode_baud_rate(struct tty_struct *tty, speed_t ibaud, speed_t obaud) argument
477 tty_termios_encode_baud_rate(&tty->termios, ibaud, obaud);
389 tty_termios_encode_baud_rate(struct ktermios *termios, speed_t ibaud, speed_t obaud) argument

Completed in 41 milliseconds