Lines Matching refs:baud
1483 int rts, cts, txflow, rxflow, xany, baud; in moxa_set_tty_param() local
1498 baud = MoxaPortSetTermio(ch, ts, tty_get_baud_rate(tty)); in moxa_set_tty_param()
1499 if (baud == -1) in moxa_set_tty_param()
1500 baud = tty_termios_baud_rate(old_termios); in moxa_set_tty_param()
1502 tty_encode_baud_rate(tty, baud, baud); in moxa_set_tty_param()
1744 static speed_t MoxaPortSetBaud(struct moxa_port *port, speed_t baud) in MoxaPortSetBaud() argument
1751 if (baud < 50) in MoxaPortSetBaud()
1753 if (baud > max) in MoxaPortSetBaud()
1754 baud = max; in MoxaPortSetBaud()
1756 val = clock / baud; in MoxaPortSetBaud()
1758 baud = clock / val; in MoxaPortSetBaud()
1759 return baud; in MoxaPortSetBaud()
1763 speed_t baud) in MoxaPortSetTermio() argument
1798 if (MOXA_IS_320(port->board) && baud >= 921600) in MoxaPortSetTermio()
1801 baud = MoxaPortSetBaud(port, baud); in MoxaPortSetTermio()
1812 return baud; in MoxaPortSetTermio()