diff options
author | Stefan Agner <stefan@agner.ch> | 2015-03-13 14:51:50 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-04-19 10:10:22 +0200 |
commit | beaa43e9b4ca8cfe4379bb2f849f10e04b85b1d4 (patch) | |
tree | bdfc78cb1fba3f7cb7ee2f72333c98539f37ca87 | |
parent | f43a431c415b34a75382e4ecbda5a533401beb72 (diff) | |
download | lwn-beaa43e9b4ca8cfe4379bb2f849f10e04b85b1d4.tar.gz lwn-beaa43e9b4ca8cfe4379bb2f849f10e04b85b1d4.zip |
tty: serial: fsl_lpuart: specify transmit FIFO size
commit 4e8f245937091b2c9eebf3d4909c9ceda4f0a78e upstream.
Specify transmit FIFO size which might be different depending on
LPUART instance. This makes sure uart_wait_until_sent in serial
core getting called, which in turn waits and checks if the FIFO
is really empty on shutdown by using the tx_empty callback.
Without the call of this callback, the last several characters
might not yet be transmitted when closing the serial port. This
can be reproduced by simply using echo and redirect the output to
a ttyLP device.
Signed-off-by: Stefan Agner <stefan@agner.ch>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/tty/serial/fsl_lpuart.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/tty/serial/fsl_lpuart.c b/drivers/tty/serial/fsl_lpuart.c index e95c4971327b..1657514f56d2 100644 --- a/drivers/tty/serial/fsl_lpuart.c +++ b/drivers/tty/serial/fsl_lpuart.c @@ -1095,6 +1095,8 @@ static int lpuart_startup(struct uart_port *port) sport->txfifo_size = 0x1 << (((temp >> UARTPFIFO_TXSIZE_OFF) & UARTPFIFO_FIFOSIZE_MASK) + 1); + sport->port.fifosize = sport->txfifo_size; + sport->rxfifo_size = 0x1 << (((temp >> UARTPFIFO_RXSIZE_OFF) & UARTPFIFO_FIFOSIZE_MASK) + 1); |