aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHubert Feurstein <h.feurstein@gmail.com>2013-07-18 12:52:49 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-07-26 18:43:37 -0400
commit09bd00f6e9a434727e4bfe93b0498c5d893c1906 (patch)
tree96593743130245673f9bde13e77e892660ad7717
parenta496e6284c482555db8078190bb689594d129fa9 (diff)
serial/imx: fix custom-baudrate handling
It was not possible to set custom-baudrates like 62500. Signed-off-by: Hubert Feurstein <h.feurstein@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/tty/serial/imx.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/tty/serial/imx.c b/drivers/tty/serial/imx.c
index 5bce53655c00..79d1943c2e79 100644
--- a/drivers/tty/serial/imx.c
+++ b/drivers/tty/serial/imx.c
@@ -1028,6 +1028,11 @@ imx_set_termios(struct uart_port *port, struct ktermios *termios,
1028 */ 1028 */
1029 div = 1; 1029 div = 1;
1030 } else { 1030 } else {
1031 /* custom-baudrate handling */
1032 div = sport->port.uartclk / (baud * 16);
1033 if (baud == 38400 && quot != div)
1034 baud = sport->port.uartclk / (quot * 16);
1035
1031 div = sport->port.uartclk / (baud * 16); 1036 div = sport->port.uartclk / (baud * 16);
1032 if (div > 7) 1037 if (div > 7)
1033 div = 7; 1038 div = 7;