Lines Matching full:baud
84 * BAUD_BASE / baud - 1
85 * However, typically BAUD_BASE is not divisible by baud, so
88 * int(BAUD_BASE / baud - 0.5) ->
89 * int(BAUD_BASE / baud - (baud >> 1) / baud) ->
90 * int((BAUD_BASE - (baud >> 1)) / baud)
249 unsigned int baud, quot, h_lcr, b; in serial21285_set_termios() local
265 baud = uart_get_baud_rate(port, termios, old, 0, port->uartclk/16); in serial21285_set_termios()
266 quot = uart_get_divisor(port, baud); in serial21285_set_termios()
301 uart_update_timeout(port, termios->c_cflag, baud); in serial21285_set_termios()
421 serial21285_get_options(struct uart_port *port, int *baud, in serial21285_get_options() argument
452 *baud = port->uartclk / (16 * (tmp + 1)); in serial21285_get_options()
459 int baud = 9600; in serial21285_console_setup() local
465 baud = 57600; in serial21285_console_setup()
473 uart_parse_options(options, &baud, &parity, &bits, &flow); in serial21285_console_setup()
475 serial21285_get_options(port, &baud, &parity, &bits); in serial21285_console_setup()
477 return uart_set_options(port, co, baud, parity, bits, flow); in serial21285_console_setup()