Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 277664
b: refs/heads/master
c: 5a9b80e
h: refs/heads/master
v: v3
  • Loading branch information
Paul Bolle authored and Gustavo F. Padovan committed Oct 10, 2011
1 parent 0c747a2 commit cebcf11
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 3e90dc86f4b840297bd1fafdb9ba1bf58f2e0e49
refs/heads/master: 5a9b80e2cd993f77d6d068470a4fd77fdfae44ab
4 changes: 3 additions & 1 deletion trunk/drivers/bluetooth/btusb.c
Original file line number Diff line number Diff line change
Expand Up @@ -767,7 +767,9 @@ static int btusb_send_frame(struct sk_buff *skb)

err = usb_submit_urb(urb, GFP_ATOMIC);
if (err < 0) {
BT_ERR("%s urb %p submission failed", hdev->name, urb);
if (err != -EPERM && err != -ENODEV)
BT_ERR("%s urb %p submission failed (%d)",
hdev->name, urb, -err);
kfree(urb->setup_packet);
usb_unanchor_urb(urb);
} else {
Expand Down

0 comments on commit cebcf11

Please sign in to comment.