diff options
author | Oliver Neukum <oliver@neukum.org> | 2009-12-16 13:23:43 -0500 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2009-12-17 15:12:49 -0500 |
commit | 652fd781a52ad6e24b908cd8b83d12699754f253 (patch) | |
tree | 4d21fcd5a7924e2107d3b92893492a991d9d7106 /drivers/bluetooth/btusb.c | |
parent | b13f5860447a98daf0358a51fbff66154ac0663a (diff) |
Bluetooth: Prevent ill-timed autosuspend in USB driver
The device must be marked busy as it receives data.
Signed-off-by: Oliver Neukum <oliver@neukum.org>
Tested-by: Matthew Garrett <mjg@redhat.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'drivers/bluetooth/btusb.c')
-rw-r--r-- | drivers/bluetooth/btusb.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/bluetooth/btusb.c b/drivers/bluetooth/btusb.c index 4d2905996751..a699f09ddf7c 100644 --- a/drivers/bluetooth/btusb.c +++ b/drivers/bluetooth/btusb.c | |||
@@ -307,6 +307,7 @@ static void btusb_bulk_complete(struct urb *urb) | |||
307 | return; | 307 | return; |
308 | 308 | ||
309 | usb_anchor_urb(urb, &data->bulk_anchor); | 309 | usb_anchor_urb(urb, &data->bulk_anchor); |
310 | usb_mark_last_busy(data->udev); | ||
310 | 311 | ||
311 | err = usb_submit_urb(urb, GFP_ATOMIC); | 312 | err = usb_submit_urb(urb, GFP_ATOMIC); |
312 | if (err < 0) { | 313 | if (err < 0) { |