Lines Matching refs:quot
69 int quot; /* baudrate divisor */ member
177 priv->quot = calc_divisor(9600); in ark3116_port_probe()
178 ark3116_write_reg(serial, UART_DLL, priv->quot & 0xff); in ark3116_port_probe()
179 ark3116_write_reg(serial, UART_DLM, (priv->quot>>8) & 0xff); in ark3116_port_probe()
226 int quot; in ark3116_set_termios() local
263 quot = calc_divisor(9600); in ark3116_set_termios()
268 quot = calc_divisor(bps); in ark3116_set_termios()
272 quot = calc_divisor(bps); in ark3116_set_termios()
276 quot = calc_divisor(bps); in ark3116_set_termios()
287 __func__, hcr, lcr, quot); in ark3116_set_termios()
296 if (priv->quot != quot) { in ark3116_set_termios()
297 priv->quot = quot; in ark3116_set_termios()
307 ark3116_write_reg(serial, UART_DLL, quot & 0xff); in ark3116_set_termios()
308 ark3116_write_reg(serial, UART_DLM, (quot>>8) & 0xff); in ark3116_set_termios()