提交 97d24634 编写于 作者: U Uwe Kleine-König 提交者: Greg Kroah-Hartman

serial: use DIV_ROUND_CLOSEST instead of open coding it

Signed-off-by: NUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
上级 1e9deb11
......@@ -421,7 +421,7 @@ uart_get_divisor(struct uart_port *port, unsigned int baud)
if (baud == 38400 && (port->flags & UPF_SPD_MASK) == UPF_SPD_CUST)
quot = port->custom_divisor;
else
quot = (port->uartclk + (8 * baud)) / (16 * baud);
quot = DIV_ROUND_CLOSEST(port->uartclk, 16 * baud);
return quot;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册