Lines Matching refs:baud
508 #define TX_LOWAT_CHARS(baud) (baud / 10 / TX_LOWAT_HZ) argument
707 static int set_baud(struct ioc4_port *port, int baud) in set_baud() argument
715 divisor = SER_DIVISOR(baud, port->ip_pci_bus_speed); in set_baud()
720 diff = actual_baud - baud; in set_baud()
1316 int baud, int byte_size, int stop_bits, int parenb, int parodd) in config_port() argument
1322 __func__, baud, byte_size, stop_bits, parenb, parodd)); in config_port()
1324 if (set_baud(port, baud)) in config_port()
1381 port->ip_baud = baud; in config_port()
1387 port->ip_tx_lowat = (TX_LOWAT_CHARS(baud) + 3) / 4; in config_port()
1688 int baud, bits; in ioc4_change_speed() local
1729 baud = uart_get_baud_rate(the_port, new_termios, old_termios, in ioc4_change_speed()
1731 DPRINT_CONFIG(("%s: returned baud %d\n", __func__, baud)); in ioc4_change_speed()
1734 if (!baud) in ioc4_change_speed()
1735 baud = 9600; in ioc4_change_speed()
1739 the_port->timeout = ((the_port->fifosize * HZ * bits) / (baud / 10)); in ioc4_change_speed()
1771 __func__, (void *)port, cflag, baud, new_data, new_stop, in ioc4_change_speed()
1774 if ((config_port(port, baud, /* baud */ in ioc4_change_speed()