Lines Matching refs:quot
65 int quot; /* baudrate divisor */ member
164 priv->quot = calc_divisor(9600); in ark3116_port_probe()
165 ark3116_write_reg(serial, UART_DLL, priv->quot & 0xff); in ark3116_port_probe()
166 ark3116_write_reg(serial, UART_DLM, (priv->quot>>8) & 0xff); in ark3116_port_probe()
199 int quot; in ark3116_set_termios() local
236 quot = calc_divisor(9600); in ark3116_set_termios()
241 quot = calc_divisor(bps); in ark3116_set_termios()
245 quot = calc_divisor(bps); in ark3116_set_termios()
249 quot = calc_divisor(bps); in ark3116_set_termios()
260 __func__, hcr, lcr, quot); in ark3116_set_termios()
269 if (priv->quot != quot) { in ark3116_set_termios()
270 priv->quot = quot; in ark3116_set_termios()
280 ark3116_write_reg(serial, UART_DLL, quot & 0xff); in ark3116_set_termios()
281 ark3116_write_reg(serial, UART_DLM, (quot>>8) & 0xff); in ark3116_set_termios()