diff options
author | Johan Hovold <jhovold@gmail.com> | 2013-03-21 07:37:03 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-03-25 16:50:52 -0400 |
commit | c648e94ebfc7701f4d0c79dce959134f02f24ce7 (patch) | |
tree | 25065dc79f9b73126a3130cad7a8e8a69fc0bc3a /drivers/usb/serial/cypress_m8.c | |
parent | 493516e34455cdfcd0a2875bb62ed5d910782958 (diff) |
USB: cypress_m8: fix TIOCMIWAIT and disconnect
Use tty-port modem-status-change wait queue on which processes are woken
up at hangup and disconnect.
Currently a process waiting on modem-status changes will not be woken on
device disconnect.
Signed-off-by: Johan Hovold <jhovold@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/serial/cypress_m8.c')
-rw-r--r-- | drivers/usb/serial/cypress_m8.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/usb/serial/cypress_m8.c b/drivers/usb/serial/cypress_m8.c index cdbb09691aee..e4a62cfc4081 100644 --- a/drivers/usb/serial/cypress_m8.c +++ b/drivers/usb/serial/cypress_m8.c | |||
@@ -861,7 +861,7 @@ static int cypress_tiocmiwait(struct tty_struct *tty, unsigned long arg) | |||
861 | char diff; | 861 | char diff; |
862 | 862 | ||
863 | for (;;) { | 863 | for (;;) { |
864 | interruptible_sleep_on(&port->delta_msr_wait); | 864 | interruptible_sleep_on(&port->port.delta_msr_wait); |
865 | /* see if a signal did it */ | 865 | /* see if a signal did it */ |
866 | if (signal_pending(current)) | 866 | if (signal_pending(current)) |
867 | return -ERESTARTSYS; | 867 | return -ERESTARTSYS; |
@@ -1176,7 +1176,7 @@ static void cypress_read_int_callback(struct urb *urb) | |||
1176 | if (priv->current_status != priv->prev_status) { | 1176 | if (priv->current_status != priv->prev_status) { |
1177 | priv->diff_status |= priv->current_status ^ | 1177 | priv->diff_status |= priv->current_status ^ |
1178 | priv->prev_status; | 1178 | priv->prev_status; |
1179 | wake_up_interruptible(&port->delta_msr_wait); | 1179 | wake_up_interruptible(&port->port.delta_msr_wait); |
1180 | priv->prev_status = priv->current_status; | 1180 | priv->prev_status = priv->current_status; |
1181 | } | 1181 | } |
1182 | spin_unlock_irqrestore(&priv->lock, flags); | 1182 | spin_unlock_irqrestore(&priv->lock, flags); |