Lines Matching refs:baud
184 #define TX_LOWAT_CHARS(baud) (baud / 10 / TX_LOWAT_HZ) argument
308 static int set_baud(struct ioc3_port *port, int baud) in set_baud() argument
317 divisor = SER_DIVISOR(baud, SER_CLK_SPEED(prediv)); in set_baud()
322 diff = actual_baud - baud; in set_baud()
591 int baud, int byte_size, int stop_bits, int parenb, int parodd) in config_port() argument
599 baud, byte_size, stop_bits, parenb, parodd)); in config_port()
601 if (set_baud(port, baud)) in config_port()
658 port->ip_baud = baud; in config_port()
664 port->ip_tx_lowat = (TX_LOWAT_CHARS(baud) + 3) / 4; in config_port()
959 int baud; in ioc3_change_speed() local
992 baud = uart_get_baud_rate(the_port, new_termios, old_termios, in ioc3_change_speed()
994 DPRINT_CONFIG(("%s: returned baud %d for line %d\n", __func__, baud, in ioc3_change_speed()
999 uart_update_timeout(the_port, cflag, baud); in ioc3_change_speed()
1032 __func__, (void *)port, the_port->line, cflag, baud, in ioc3_change_speed()
1036 if ((config_port(port, baud, /* baud */ in ioc3_change_speed()