diff options
author | David S. Miller <davem@davemloft.net> | 2011-04-02 04:15:25 +0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-04-02 04:15:25 +0400 |
commit | 5e58e5283a0a0a99ee970e7e5c80c6541693376e (patch) | |
tree | 40409bad22ddc6c37b23ae8e518bbd6b2f39007c /drivers/bluetooth/btusb.c | |
parent | c100c8f4c3c6f2a407bdbaaad2c4f1062e6a473a (diff) | |
parent | ffd8c746fbef50cf12df239f9d23c2afe1a2c3cb (diff) | |
download | linux-5e58e5283a0a0a99ee970e7e5c80c6541693376e.tar.xz |
Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6
Diffstat (limited to 'drivers/bluetooth/btusb.c')
-rw-r--r-- | drivers/bluetooth/btusb.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/drivers/bluetooth/btusb.c b/drivers/bluetooth/btusb.c index 866811428e20..762a5109c68a 100644 --- a/drivers/bluetooth/btusb.c +++ b/drivers/bluetooth/btusb.c @@ -71,6 +71,9 @@ static struct usb_device_id btusb_table[] = { /* Apple MacBookAir3,1, MacBookAir3,2 */ { USB_DEVICE(0x05ac, 0x821b) }, + /* Apple MacBookPro8,2 */ + { USB_DEVICE(0x05ac, 0x821a) }, + /* AVM BlueFRITZ! USB v2.0 */ { USB_DEVICE(0x057c, 0x3800) }, @@ -690,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); |