diff options
author | Johan Hovold <jhovold@gmail.com> | 2013-04-18 17:33:22 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-04-19 10:24:14 -0700 |
commit | c0419024332a73f299bdd7a6875a00cf3942a054 (patch) | |
tree | 3f982570fef2a4fad26eba393c32461de983d141 /drivers/usb | |
parent | 2c992cd73772bd0ef107536e8e3399d28493caa8 (diff) | |
download | op-kernel-dev-c0419024332a73f299bdd7a6875a00cf3942a054.zip op-kernel-dev-c0419024332a73f299bdd7a6875a00cf3942a054.tar.gz |
USB: ti_usb_3410_5052: remove redundant drain from break_ctl
Remove redundant drain, which has already been handled by the tty-layer,
from break_ctl.
Signed-off-by: Johan Hovold <jhovold@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb')
-rw-r--r-- | drivers/usb/serial/ti_usb_3410_5052.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/usb/serial/ti_usb_3410_5052.c b/drivers/usb/serial/ti_usb_3410_5052.c index 062b6d8..6a40823 100644 --- a/drivers/usb/serial/ti_usb_3410_5052.c +++ b/drivers/usb/serial/ti_usb_3410_5052.c @@ -976,8 +976,6 @@ static void ti_break(struct tty_struct *tty, int break_state) if (tport == NULL) return; - ti_drain(tport, (tport->tp_closing_wait*HZ)/100); - status = ti_write_byte(port, tport->tp_tdev, tport->tp_uart_base_addr + TI_UART_OFFSET_LCR, TI_LCR_BREAK, break_state == -1 ? TI_LCR_BREAK : 0); |