serial: imx: do not stop Rx/Tx on termios change
authorSergey Organov <sorganov@gmail.com>
Wed, 28 Aug 2019 18:37:52 +0000 (21:37 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 4 Sep 2019 10:43:55 +0000 (12:43 +0200)
commit88c38044c12b09ad8b4b82b61133e66e879325ba
treebfb15097c2a02d1e36d3d776c7c2d8e078c797d9
parent2eda5345e4ef61b35101b4fef58417a41d8d53fd
serial: imx: do not stop Rx/Tx on termios change

imx_set_termios(): stopping receiver and transmitter does harm when
something that doesn't touch transmission format/rate changes, such as
RTS/CTS handshake.

OTOH, it does no good on baud rate or format change, as
synchronization on upper-level protocols is still required to do it
right.

Therefore, just stop doing it.

Signed-off-by: Sergey Organov <sorganov@gmail.com>
Link: https://lore.kernel.org/r/1567017475-11919-3-git-send-email-sorganov@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/tty/serial/imx.c