diff options
author | Peter Hurley <peter@hurleysoftware.com> | 2014-09-10 15:06:28 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-09-23 21:19:35 -0700 |
commit | 8620d3e5382a3c172a7885fa67a70955ca930425 (patch) | |
tree | 33560d2661b1af68b80cc069f4fd9c7832f677d3 /drivers/tty/serial | |
parent | d95e3caea2d1424dfdec30b46bd94087da94f928 (diff) | |
download | op-kernel-dev-8620d3e5382a3c172a7885fa67a70955ca930425.zip op-kernel-dev-8620d3e5382a3c172a7885fa67a70955ca930425.tar.gz |
serial: bfin-uart: Fix auto CTS
Commit 64851636d568ae9f167cd5d1dcdbfe17e6eef73c,
serial: bfin-uart: Remove ASYNC_CTS_FLOW flag for hardware automatic CTS,
open-codes uart_handle_cts_change() when CONFIG_SERIAL_BFIN_HARD_CTSRTS
to skip start and stop tx.
But the CTS interrupt handler _still_ calls uart_handle_cts_change();
only call uart_handle_cts_change() if !CONFIG_SERIAL_BFIN_HARD_CTSRTS.
cc: Sonic Zhang <sonic.zhang@analog.com>
Signed-off-by: Peter Hurley <peter@hurleysoftware.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/tty/serial')
-rw-r--r-- | drivers/tty/serial/bfin_uart.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/tty/serial/bfin_uart.c b/drivers/tty/serial/bfin_uart.c index fc9fbf3..7da9911 100644 --- a/drivers/tty/serial/bfin_uart.c +++ b/drivers/tty/serial/bfin_uart.c @@ -122,8 +122,9 @@ static irqreturn_t bfin_serial_mctrl_cts_int(int irq, void *dev_id) if (!status) uport->hw_stopped = 1; } -#endif +#else uart_handle_cts_change(uport, status & TIOCM_CTS); +#endif return IRQ_HANDLED; } |