diff options
author | Nick Pelly <[email protected]> | 2011-07-15 13:53:08 -0700 |
---|---|---|
committer | Greg Kroah-Hartman <[email protected]> | 2011-08-23 10:58:38 -0700 |
commit | b280a97d1caf6fe1d38b51ebb31219391f5ad1a0 (patch) | |
tree | 72ec214cd88e29821fe972fa767a105d5072cdce | |
parent | 0055197e984e5fbe6f48f37fc50dd30254915493 (diff) |
omap-serial: Allow IXON and IXOFF to be disabled.
Fixes logic bug that software flow control cannot be disabled, because
serial_omap_configure_xonxoff() is not called if both IXON and IXOFF bits
are cleared.
Signed-off-by: Nick Pelly <[email protected]>
Acked-by: Govindraj.R <[email protected]>
Tested-by: Govindraj.R <[email protected]>
Cc: stable <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
-rw-r--r-- | drivers/tty/serial/omap-serial.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/tty/serial/omap-serial.c b/drivers/tty/serial/omap-serial.c index c37df8d0fa28..5e713d3ef1f4 100644 --- a/drivers/tty/serial/omap-serial.c +++ b/drivers/tty/serial/omap-serial.c @@ -806,8 +806,7 @@ serial_omap_set_termios(struct uart_port *port, struct ktermios *termios, serial_omap_set_mctrl(&up->port, up->port.mctrl); /* Software Flow Control Configuration */ - if (termios->c_iflag & (IXON | IXOFF)) - serial_omap_configure_xonxoff(up, termios); + serial_omap_configure_xonxoff(up, termios); spin_unlock_irqrestore(&up->port.lock, flags); dev_dbg(up->port.dev, "serial_omap_set_termios+%d\n", up->pdev->id); |