div_std           310 drivers/tty/serial/sccnxp.c 	int div_std, tmp_baud, bestbaud = INT_MAX, besterr = INT_MAX;
div_std           315 drivers/tty/serial/sccnxp.c 	div_std = DIV_ROUND_CLOSEST(port->uartclk, 2 * 16 * baud);
div_std           316 drivers/tty/serial/sccnxp.c 	if ((div_std >= 2) && (div_std <= 0xffff)) {
div_std           317 drivers/tty/serial/sccnxp.c 		bestbaud = DIV_ROUND_CLOSEST(port->uartclk, 2 * 16 * div_std);
div_std           320 drivers/tty/serial/sccnxp.c 		sccnxp_port_write(port, SCCNXP_CTPU_REG, div_std >> 8);
div_std           321 drivers/tty/serial/sccnxp.c 		sccnxp_port_write(port, SCCNXP_CTPL_REG, div_std);
div_std           330 drivers/tty/serial/sccnxp.c 		div_std = DIV_ROUND_CLOSEST(chip->freq_std, baud_std[i].baud);
div_std           331 drivers/tty/serial/sccnxp.c 		tmp_baud = DIV_ROUND_CLOSEST(port->uartclk, div_std);