aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb/serial
diff options
context:
space:
mode:
authorOliver Neukum <oliver@neukum.org>2011-02-10 15:33:10 +0100
committerGreg Kroah-Hartman <gregkh@suse.de>2011-02-17 10:51:11 -0800
commitc9c4558f7874676e31ea7a74caafcf09ebbc03ed (patch)
treebb42c86cc0768f9671b22573704503b68f6e6c62 /drivers/usb/serial
parent8ab10400a037a516cc846c338f879e5bd62497ce (diff)
downloadkernel_samsung_smdk4412-c9c4558f7874676e31ea7a74caafcf09ebbc03ed.tar.gz
kernel_samsung_smdk4412-c9c4558f7874676e31ea7a74caafcf09ebbc03ed.tar.bz2
kernel_samsung_smdk4412-c9c4558f7874676e31ea7a74caafcf09ebbc03ed.zip
usb_wwan: fix error in marking device busy
This fixes two errors: - the device is busy if a message was recieved even if resubmission fails - the device is not busy if resubmission fails due to -EPERM Signed-off-by: Oliver Neukum <oneukum@suse.de> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb/serial')
-rw-r--r--drivers/usb/serial/usb_wwan.c13
1 files changed, 9 insertions, 4 deletions
diff --git a/drivers/usb/serial/usb_wwan.c b/drivers/usb/serial/usb_wwan.c
index b004b2a485c..7bd06854f87 100644
--- a/drivers/usb/serial/usb_wwan.c
+++ b/drivers/usb/serial/usb_wwan.c
@@ -305,11 +305,16 @@ static void usb_wwan_indat_callback(struct urb *urb)
/* Resubmit urb so we continue receiving */
if (status != -ESHUTDOWN) {
err = usb_submit_urb(urb, GFP_ATOMIC);
- if (err && err != -EPERM)
- printk(KERN_ERR "%s: resubmit read urb failed. "
- "(%d)", __func__, err);
- else
+ if (err) {
+ if (err != -EPERM) {
+ printk(KERN_ERR "%s: resubmit read urb failed. "
+ "(%d)", __func__, err);
+ /* busy also in error unless we are killed */
+ usb_mark_last_busy(port->serial->dev);
+ }
+ } else {
usb_mark_last_busy(port->serial->dev);
+ }
}
}