imx_set_mctrl() stop fiddling with UCR2_CTSC bit Signed-off-by: Sergey Organov <sorganov@xxxxxxxxx> --- drivers/tty/serial/imx.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/tty/serial/imx.c b/drivers/tty/serial/imx.c index e9e812a..6577552 100644 --- a/drivers/tty/serial/imx.c +++ b/drivers/tty/serial/imx.c @@ -967,9 +967,9 @@ static void imx_uart_set_mctrl(struct uart_port *port, unsigned int mctrl) u32 ucr2; ucr2 = imx_uart_readl(sport, UCR2); - ucr2 &= ~(UCR2_CTS | UCR2_CTSC); + ucr2 &= ~UCR2_CTS; if (mctrl & TIOCM_RTS) - ucr2 |= UCR2_CTS | UCR2_CTSC; + ucr2 |= UCR2_CTS; imx_uart_writel(sport, ucr2, UCR2); } -- 2.10.0.1.g57b01a3