diff options
author | Vinicius Costa Gomes <vinicius.gomes@openbossa.org> | 2011-03-14 17:20:33 -0400 |
---|---|---|
committer | Gustavo F. Padovan <padovan@profusion.mobi> | 2011-03-24 16:04:44 -0400 |
commit | 8763b4da41132e2d5a896cd5e629c3c0a652205e (patch) | |
tree | c9b9232b6fe50d053d595f7025d64d1fc5f7f4be /drivers | |
parent | f630cf0d5434e3923e1b8226ffa2753ead6b0ce5 (diff) |
Bluetooth: Fix sending LE data over USB
Now that we have support for LE connections, before discarding a
frame we must check if there's a LE connection over that transport.
Signed-off-by: Vinicius Costa Gomes <vinicius.gomes@openbossa.org>
Acked-by: Ville Tervo <ville.tervo@nokia.com>
Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/bluetooth/btusb.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/bluetooth/btusb.c b/drivers/bluetooth/btusb.c index 2af2e770f4bd..762a5109c68a 100644 --- a/drivers/bluetooth/btusb.c +++ b/drivers/bluetooth/btusb.c | |||
@@ -693,7 +693,8 @@ static int btusb_send_frame(struct sk_buff *skb) | |||
693 | break; | 693 | break; |
694 | 694 | ||
695 | case HCI_ACLDATA_PKT: | 695 | case HCI_ACLDATA_PKT: |
696 | if (!data->bulk_tx_ep || hdev->conn_hash.acl_num < 1) | 696 | if (!data->bulk_tx_ep || (hdev->conn_hash.acl_num < 1 && |
697 | hdev->conn_hash.le_num < 1)) | ||
697 | return -ENODEV; | 698 | return -ENODEV; |
698 | 699 | ||
699 | urb = usb_alloc_urb(0, GFP_ATOMIC); | 700 | urb = usb_alloc_urb(0, GFP_ATOMIC); |