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()
201 int quot; in ark3116_set_termios() local
238 quot = calc_divisor(9600); in ark3116_set_termios()
243 quot = calc_divisor(bps); in ark3116_set_termios()
247 quot = calc_divisor(bps); in ark3116_set_termios()
251 quot = calc_divisor(bps); in ark3116_set_termios()
262 __func__, hcr, lcr, quot); in ark3116_set_termios()
271 if (priv->quot != quot) { in ark3116_set_termios()
272 priv->quot = quot; in ark3116_set_termios()
282 ark3116_write_reg(serial, UART_DLL, quot & 0xff); in ark3116_set_termios()
283 ark3116_write_reg(serial, UART_DLM, (quot>>8) & 0xff); in ark3116_set_termios()