diff options
author | John W. Linville <linville@tuxdriver.com> | 2011-04-07 19:30:53 (GMT) |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2011-04-07 19:30:53 (GMT) |
commit | f3b3e36f4ecad9fd7b0ae04d7400f2153a7834eb (patch) | |
tree | 94417c101111e299fecd93ff41b2304e47e59e2c /drivers | |
parent | b0006e69615868f3dfdfe2bd64eb11973f1208fc (diff) | |
parent | db940cb0db7c69a217661ecd49e1e6b0d680a6cc (diff) | |
download | linux-fsl-qoriq-f3b3e36f4ecad9fd7b0ae04d7400f2153a7834eb.tar.xz |
Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/padovan/bluetooth-next-2.6
Diffstat (limited to 'drivers')
-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 8668114..762a510 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); |