Linux bluetooth development
 help / color / mirror / Atom feed
* [PATCH 1/2] bluetooth: Add support Bluetooth controller of MacbookPro 6,2
@ 2010-08-19  5:54 Nobuhiro Iwamatsu
  2010-08-19  5:54 ` [PATCH 2/2] bluetooth: Add support Bluetooth controller of MacbookPro 7,1 Nobuhiro Iwamatsu
  2010-08-19  8:11 ` [PATCH 1/2] bluetooth: Add support Bluetooth controller of MacbookPro 6,2 Marcel Holtmann
  0 siblings, 2 replies; 4+ messages in thread
From: Nobuhiro Iwamatsu @ 2010-08-19  5:54 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: stable, Nobuhiro Iwamatsu

Bluetooth controller of MacbookPro 6,2 does not work.
Because Device Class of these controllers was set 255 (Vendor Sepecific Class).

Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
---
 drivers/bluetooth/btusb.c |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/drivers/bluetooth/btusb.c b/drivers/bluetooth/btusb.c
index d22ce3c..9fb8635 100644
--- a/drivers/bluetooth/btusb.c
+++ b/drivers/bluetooth/btusb.c
@@ -62,6 +62,9 @@ static struct usb_device_id btusb_table[] = {
 	/* Apple iMac11,1 */
 	{ USB_DEVICE(0x05ac, 0x8215) },
 
+	/* Apple MacBookPro6,2 */
+	{ USB_DEVICE(0x05ac, 0x8218) },
+
 	/* AVM BlueFRITZ! USB v2.0 */
 	{ USB_DEVICE(0x057c, 0x3800) },
 
-- 
1.7.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH 2/2] bluetooth: Add support Bluetooth controller of MacbookPro 7,1
  2010-08-19  5:54 [PATCH 1/2] bluetooth: Add support Bluetooth controller of MacbookPro 6,2 Nobuhiro Iwamatsu
@ 2010-08-19  5:54 ` Nobuhiro Iwamatsu
  2010-08-19  8:11 ` [PATCH 1/2] bluetooth: Add support Bluetooth controller of MacbookPro 6,2 Marcel Holtmann
  1 sibling, 0 replies; 4+ messages in thread
From: Nobuhiro Iwamatsu @ 2010-08-19  5:54 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: stable, Nobuhiro Iwamatsu

Bluetooth controller of MacbookPro 7,1 does not work.
Because Device Class of these controllers was set 255 (Vendor Sepecific Class).

Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
---
 drivers/bluetooth/btusb.c |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/drivers/bluetooth/btusb.c b/drivers/bluetooth/btusb.c
index 9fb8635..3da2ba2 100644
--- a/drivers/bluetooth/btusb.c
+++ b/drivers/bluetooth/btusb.c
@@ -59,6 +59,9 @@ static struct usb_device_id btusb_table[] = {
 	/* Generic Bluetooth USB device */
 	{ USB_DEVICE_INFO(0xe0, 0x01, 0x01) },
 
+	/* Apple MacBookPro 7,1 */
+	{ USB_DEVICE(0x05ac, 0x8213) },
+
 	/* Apple iMac11,1 */
 	{ USB_DEVICE(0x05ac, 0x8215) },
 
-- 
1.7.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH 1/2] bluetooth: Add support Bluetooth controller of MacbookPro 6,2
  2010-08-19  5:54 [PATCH 1/2] bluetooth: Add support Bluetooth controller of MacbookPro 6,2 Nobuhiro Iwamatsu
  2010-08-19  5:54 ` [PATCH 2/2] bluetooth: Add support Bluetooth controller of MacbookPro 7,1 Nobuhiro Iwamatsu
@ 2010-08-19  8:11 ` Marcel Holtmann
  2010-08-20  7:24   ` Nobuhiro Iwamatsu
  1 sibling, 1 reply; 4+ messages in thread
From: Marcel Holtmann @ 2010-08-19  8:11 UTC (permalink / raw)
  To: Nobuhiro Iwamatsu; +Cc: linux-bluetooth, stable

Hi Nobuhiro.

> Bluetooth controller of MacbookPro 6,2 does not work.
> Because Device Class of these controllers was set 255 (Vendor Sepecific Class).
> 
> Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>

it would be nice if you include the output from /proc/bus/usb/devices or
usb-devices.sh script to proof the different device class.

Regards

Marcel



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH 1/2] bluetooth: Add support Bluetooth controller of MacbookPro 6,2
  2010-08-19  8:11 ` [PATCH 1/2] bluetooth: Add support Bluetooth controller of MacbookPro 6,2 Marcel Holtmann
@ 2010-08-20  7:24   ` Nobuhiro Iwamatsu
  0 siblings, 0 replies; 4+ messages in thread
From: Nobuhiro Iwamatsu @ 2010-08-20  7:24 UTC (permalink / raw)
  To: Marcel Holtmann; +Cc: linux-bluetooth, stable

Hi,

2010/8/19 Marcel Holtmann <marcel@holtmann.org>:
> Hi Nobuhiro.
>
>> Bluetooth controller of MacbookPro 6,2 does not work.
>> Because Device Class of these controllers was set 255 (Vendor Sepecific =
Class).
>>
>> Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
>
> it would be nice if you include the output from /proc/bus/usb/devices or
> usb-devices.sh script to proof the different device class.
>
Oh, sorry. I sent patch with infomation of USB device.

Best regards,
  Nobuhiro
--=20
Nobuhiro Iwamatsu
=A0=A0 iwamatsu at {nigauri.org / debian.org}
=A0=A0 GPG ID: 40AD1FA6

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2010-08-20  7:24 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-08-19  5:54 [PATCH 1/2] bluetooth: Add support Bluetooth controller of MacbookPro 6,2 Nobuhiro Iwamatsu
2010-08-19  5:54 ` [PATCH 2/2] bluetooth: Add support Bluetooth controller of MacbookPro 7,1 Nobuhiro Iwamatsu
2010-08-19  8:11 ` [PATCH 1/2] bluetooth: Add support Bluetooth controller of MacbookPro 6,2 Marcel Holtmann
2010-08-20  7:24   ` Nobuhiro Iwamatsu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox