|
@@ -2498,9 +2498,9 @@ static unsigned int npcm_get_divisor(struct uart_8250_port *up,
|
|
|
return DIV_ROUND_CLOSEST(port->uartclk, 16 * baud + 2) - 2;
|
|
|
}
|
|
|
|
|
|
-static unsigned int serial8250_get_divisor(struct uart_port *port,
|
|
|
- unsigned int baud,
|
|
|
- unsigned int *frac)
|
|
|
+static unsigned int serial8250_do_get_divisor(struct uart_port *port,
|
|
|
+ unsigned int baud,
|
|
|
+ unsigned int *frac)
|
|
|
{
|
|
|
struct uart_8250_port *up = up_to_u8250p(port);
|
|
|
unsigned int quot;
|
|
@@ -2532,6 +2532,16 @@ static unsigned int serial8250_get_divisor(struct uart_port *port,
|
|
|
return quot;
|
|
|
}
|
|
|
|
|
|
+static unsigned int serial8250_get_divisor(struct uart_port *port,
|
|
|
+ unsigned int baud,
|
|
|
+ unsigned int *frac)
|
|
|
+{
|
|
|
+ if (port->get_divisor)
|
|
|
+ return port->get_divisor(port, baud, frac);
|
|
|
+
|
|
|
+ return serial8250_do_get_divisor(port, baud, frac);
|
|
|
+}
|
|
|
+
|
|
|
static unsigned char serial8250_compute_lcr(struct uart_8250_port *up,
|
|
|
tcflag_t c_cflag)
|
|
|
{
|
|
@@ -2570,7 +2580,7 @@ static unsigned char serial8250_compute_lcr(struct uart_8250_port *up,
|
|
|
return cval;
|
|
|
}
|
|
|
|
|
|
-static void serial8250_set_divisor(struct uart_port *port, unsigned int baud,
|
|
|
+static void serial8250_do_set_divisor(struct uart_port *port, unsigned int baud,
|
|
|
unsigned int quot, unsigned int quot_frac)
|
|
|
{
|
|
|
struct uart_8250_port *up = up_to_u8250p(port);
|
|
@@ -2603,6 +2613,15 @@ static void serial8250_set_divisor(struct uart_port *port, unsigned int baud,
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+static void serial8250_set_divisor(struct uart_port *port, unsigned int baud,
|
|
|
+ unsigned int quot, unsigned int quot_frac)
|
|
|
+{
|
|
|
+ if (port->set_divisor)
|
|
|
+ port->set_divisor(port, baud, quot, quot_frac);
|
|
|
+ else
|
|
|
+ serial8250_do_set_divisor(port, baud, quot, quot_frac);
|
|
|
+}
|
|
|
+
|
|
|
static unsigned int serial8250_get_baud_rate(struct uart_port *port,
|
|
|
struct ktermios *termios,
|
|
|
struct ktermios *old)
|