diff options
author | Vinicius Costa Gomes <vinicius.gomes@openbossa.org> | 2011-03-14 18:20:33 -0300 |
---|---|---|
committer | Gustavo F. Padovan <padovan@profusion.mobi> | 2011-03-31 14:25:25 -0300 |
commit | 8693ac900e230c85d6fff428984a0f983330844d (patch) | |
tree | 43b58e7c39268bb13835801f7d8d81f22924d242 /drivers/bluetooth | |
parent | 105721328f0fa53e772592eaca17ee0023f0cc87 (diff) | |
download | linux-3.10-8693ac900e230c85d6fff428984a0f983330844d.tar.gz linux-3.10-8693ac900e230c85d6fff428984a0f983330844d.tar.bz2 linux-3.10-8693ac900e230c85d6fff428984a0f983330844d.zip |
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/bluetooth')
-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 2af2e770f4b..762a5109c68 100644 --- a/drivers/bluetooth/btusb.c +++ b/drivers/bluetooth/btusb.c @@ -693,7 +693,8 @@ static int btusb_send_frame(struct sk_buff *skb) break; case HCI_ACLDATA_PKT: - if (!data->bulk_tx_ep || hdev->conn_hash.acl_num < 1) + if (!data->bulk_tx_ep || (hdev->conn_hash.acl_num < 1 && + hdev->conn_hash.le_num < 1)) return -ENODEV; urb = usb_alloc_urb(0, GFP_ATOMIC); |