diff options
author | Lukas Wunner <lukas@wunner.de> | 2017-10-21 10:50:18 +0200 |
---|---|---|
committer | Sasha Levin <alexander.levin@verizon.com> | 2017-12-06 21:20:15 -0500 |
commit | 269ebf46453ae48a4537a4a4aa4cc9f8e3c31234 (patch) | |
tree | 2069c5c2a9aea850eef2244ec23113cb770c6e48 | |
parent | 312ce4d0bfd851679d4f819ac9c6878a1b0baca6 (diff) |
serial: omap: Fix EFR write on RTS deassertion
[ Upstream commit 2a71de2f7366fb1aec632116d0549ec56d6a3940 ]
Commit 348f9bb31c56 ("serial: omap: Fix RTS handling") sought to enable
auto RTS upon manual RTS assertion and disable it on deassertion.
However it seems the latter was done incorrectly, it clears all bits in
the Extended Features Register *except* auto RTS.
Fixes: 348f9bb31c56 ("serial: omap: Fix RTS handling")
Cc: Peter Hurley <peter@hurleysoftware.com>
Cc: stable <stable@vger.kernel.org>
Signed-off-by: Lukas Wunner <lukas@wunner.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Sasha Levin <alexander.levin@verizon.com>
-rw-r--r-- | drivers/tty/serial/omap-serial.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/tty/serial/omap-serial.c b/drivers/tty/serial/omap-serial.c index 6b07b1040dbb..b8e618ab2273 100644 --- a/drivers/tty/serial/omap-serial.c +++ b/drivers/tty/serial/omap-serial.c @@ -708,7 +708,7 @@ static void serial_omap_set_mctrl(struct uart_port *port, unsigned int mctrl) if ((mctrl & TIOCM_RTS) && (port->status & UPSTAT_AUTORTS)) up->efr |= UART_EFR_RTS; else - up->efr &= UART_EFR_RTS; + up->efr &= ~UART_EFR_RTS; serial_out(up, UART_EFR, up->efr); serial_out(up, UART_LCR, lcr); |