diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2010-06-04 18:22:31 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-06-04 18:22:31 -0400 |
commit | d7940b04fa441b06b69f05faef43c5fb2156ab72 (patch) | |
tree | de5e119b95d334702ad009bf599e294b00507d52 /drivers/usb/serial/ftdi_sio.c | |
parent | 683eb94777c3c67b9b258765b9cb03641344c418 (diff) | |
parent | c043f1245654a726925529007210e9f786426448 (diff) |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb-2.6
* git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb-2.6:
USB: unbind all interfaces before rebinding them
USB: serial: digi_acceleport: Eliminate a NULL pointer dereference
usb: fix ehci_hcd build failure when both generic-OF and xilinx is selected
USB: cdc-acm: fix resource reclaim in error path of acm_probe
USB: ftdi_sio: fix DTR/RTS line modes
USB: s3c-hsotg: Ensure FIFOs are fully flushed after layout
USB: s3c-hsotg: SoftDisconnect minimum 3ms
USB: s3c-hsotg: Ensure TX FIFO addresses setup when initialising FIFOs
USB: s3c_hsotg: define USB_GADGET_DUALSPEED in Kconfig
USB: s3c: Enable soft disconnect during initialization
USB: xhci: Print NEC firmware version.
USB: xhci: Wait for host to start running.
USB: xhci: Wait for controller to be ready after reset.
USB: isp1362: fix inw warning on Blackfin systems
USB: mos7840: fix null-pointer dereference
Diffstat (limited to 'drivers/usb/serial/ftdi_sio.c')
-rw-r--r-- | drivers/usb/serial/ftdi_sio.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/usb/serial/ftdi_sio.c b/drivers/usb/serial/ftdi_sio.c index 050211afc07e..79dd1ae195e5 100644 --- a/drivers/usb/serial/ftdi_sio.c +++ b/drivers/usb/serial/ftdi_sio.c | |||
@@ -2005,6 +2005,8 @@ static void ftdi_set_termios(struct tty_struct *tty, | |||
2005 | "urb failed to set to rts/cts flow control\n"); | 2005 | "urb failed to set to rts/cts flow control\n"); |
2006 | } | 2006 | } |
2007 | 2007 | ||
2008 | /* raise DTR/RTS */ | ||
2009 | set_mctrl(port, TIOCM_DTR | TIOCM_RTS); | ||
2008 | } else { | 2010 | } else { |
2009 | /* | 2011 | /* |
2010 | * Xon/Xoff code | 2012 | * Xon/Xoff code |
@@ -2052,6 +2054,8 @@ static void ftdi_set_termios(struct tty_struct *tty, | |||
2052 | } | 2054 | } |
2053 | } | 2055 | } |
2054 | 2056 | ||
2057 | /* lower DTR/RTS */ | ||
2058 | clear_mctrl(port, TIOCM_DTR | TIOCM_RTS); | ||
2055 | } | 2059 | } |
2056 | return; | 2060 | return; |
2057 | } | 2061 | } |