summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJiada Wang <jiada_wang@mentor.com>2014-12-09 10:11:35 +0100
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2015-01-09 23:23:59 +0100
commit7e2fb5aa8d819e8cc0b6815ad627b7e911fabfd9 (patch)
tree6e12de6e01b2dfa754835766cbbb1a1d2b983302
parentserial: imx: Enable UCR4_OREN in startup interface (diff)
downloadlinux-7e2fb5aa8d819e8cc0b6815ad627b7e911fabfd9.tar.xz
linux-7e2fb5aa8d819e8cc0b6815ad627b7e911fabfd9.zip
serial: imx: Fix issue in software flow control
After send out x_char in UART driver, x_char needs to be cleared by UART driver itself, otherwise data in TXFIFO can no longer be sent out. Also tx counter needs to be increased to keep track of correct number of transmitted data. Signed-off-by: Jiada Wang <jiada_wang@mentor.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/tty/serial/imx.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/tty/serial/imx.c b/drivers/tty/serial/imx.c
index 79f485b99c3f..5a7da019f01a 100644
--- a/drivers/tty/serial/imx.c
+++ b/drivers/tty/serial/imx.c
@@ -471,6 +471,8 @@ static inline void imx_transmit_buffer(struct imx_port *sport)
if (sport->port.x_char) {
/* Send next char */
writel(sport->port.x_char, sport->port.membase + URTX0);
+ sport->port.icount.tx++;
+ sport->port.x_char = 0;
return;
}