[PATCH] serial: imx: count tty buffer overruns

2015-06-20 Thread Manfred Schlaegl
As can be seen in function uart_insert_char (serial_core) the element buf_overrun of struct uart_icount is used to count overruns of tty-buffer. Added support for counting of overruns in imx driver analogue to serial_core. Signed-off-by: Manfred Schlaegl --- drivers/tty/serial/imx.c | 12 +

Re: [PATCH] serial: imx: count tty buffer overruns

2015-06-20 Thread Manfred Schlaegl
On 2015-06-20 18:57, Greg Kroah-Hartman wrote: > On Sat, Jun 20, 2015 at 06:41:20PM +0200, manfred.schla...@gmx.at wrote: >> As can be seen in function uart_insert_char (serial_core) the element >> buf_overrun of struct uart_icount is used to count overruns of >> tty-buffer. >> Added support for co

[PATCH] serial: imx: count tty buffer overruns

2015-06-20 Thread manfred.schla...@gmx.at
As can be seen in function uart_insert_char (serial_core) the element buf_overrun of struct uart_icount is used to count overruns of tty-buffer. Added support for counting of overruns in imx driver analogue to serial_core. Signed-off-by: Manfred Schlaegl --- drivers/tty/serial/imx.c | 12 +

Re: [PATCH] serial: imx: count tty buffer overruns

2015-06-20 Thread Greg Kroah-Hartman
On Sat, Jun 20, 2015 at 06:41:20PM +0200, manfred.schla...@gmx.at wrote: > As can be seen in function uart_insert_char (serial_core) the element > buf_overrun of struct uart_icount is used to count overruns of > tty-buffer. > Added support for counting of overruns in imx driver analogue to > serial

[PATCH] serial: imx: count tty buffer overruns

2015-06-20 Thread manfred.schla...@gmx.at
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 As can be seen in function uart_insert_char (serial_core) the element buf_overrun of struct uart_icount is used to count overruns of tty-buffer. Added support for counting of overruns in imx driver analogue to serial_core. Signed-off-by: Manfred Schla