mirror of https://gitee.com/openkylin/linux.git
OMAP/serial: Fix misnamed variable
Fix misnamed variable to eliminate confusion. Signed-off-by: Alexey Pelykh <alexey.pelykh@gmail.com> Cc: Tony Lindgren <tony@atomide.com> Cc: Felipe Balbi <balbi@ti.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
59f8a62c25
commit
4250b5d9a4
|
@ -258,13 +258,13 @@ serial_omap_baud_is_mode16(struct uart_port *port, unsigned int baud)
|
|||
static unsigned int
|
||||
serial_omap_get_divisor(struct uart_port *port, unsigned int baud)
|
||||
{
|
||||
unsigned int divisor;
|
||||
unsigned int mode;
|
||||
|
||||
if (!serial_omap_baud_is_mode16(port, baud))
|
||||
divisor = 13;
|
||||
mode = 13;
|
||||
else
|
||||
divisor = 16;
|
||||
return port->uartclk/(baud * divisor);
|
||||
mode = 16;
|
||||
return port->uartclk/(mode * baud);
|
||||
}
|
||||
|
||||
static void serial_omap_enable_ms(struct uart_port *port)
|
||||
|
|
Loading…
Reference in New Issue