Commit abc7882a authored by Lucas Stach's avatar Lucas Stach Committed by Greg Kroah-Hartman

serial: imx: also update RX stats in DMA path

The RX bytecount was only updated in the PIO path and thus
the device erroneously reported a value of 0 if DMA is in
use.
Signed-off-by: default avatarLucas Stach <l.stach@pengutronix.de>
Acked-by: default avatarJiada Wang <jiada_wang@mentor.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 7e11577e
...@@ -918,6 +918,7 @@ static void dma_rx_callback(void *data) ...@@ -918,6 +918,7 @@ static void dma_rx_callback(void *data)
sport->port.icount.buf_overrun++; sport->port.icount.buf_overrun++;
} }
tty_flip_buffer_push(port); tty_flip_buffer_push(port);
sport->port.icount.rx += count;
} }
/* /*
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment