From 384792133f4870fed2c7d8089c89897fa0985e4e Mon Sep 17 00:00:00 2001 From: Maksim Yevmenkin Date: Mon, 18 Jul 2005 16:34:49 +0000 Subject: [PATCH] Add support for AVM BlueFRITZ! USB Bluetooth Adapter v2.0. It appears that there are at least two versions of the adapter. Version 1 (product ID 0x2200) of the adapter does not work with ng_ubt(4) and require special driver and firmware. Version 2 (product ID 0x3800) seems to work just fine, except it does not have bDeviceClass, bDeviceSubClass and bDeviceProtocol set to required (by specification) values. This change forces ng_ubt(4) to attach to the version 2 adapter. Obtained from: Marcel Holtmann Submitted by: Rainer Goellner --- sys/netgraph/bluetooth/drivers/ubt/ng_ubt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/netgraph/bluetooth/drivers/ubt/ng_ubt.c b/sys/netgraph/bluetooth/drivers/ubt/ng_ubt.c index 36505354842..0b12a4d1060 100644 --- a/sys/netgraph/bluetooth/drivers/ubt/ng_ubt.c +++ b/sys/netgraph/bluetooth/drivers/ubt/ng_ubt.c @@ -267,7 +267,6 @@ USB_MATCH(ubt) */ Static struct usb_devno const ubt_ignored_devices[] = { - { USB_VENDOR_AVM, 0x3800 }, /* AVM USB Bluetooth-Adapter BlueFritz! */ { 0, 0 } /* This should be the last item in the list */ }; @@ -280,6 +279,7 @@ USB_MATCH(ubt) */ Static struct usb_devno const ubt_broken_devices[] = { + { USB_VENDOR_AVM, 0x3800 }, /* AVM USB Bluetooth-Adapter BlueFritz! v2.0 */ { 0, 0 } /* This should be the last item in the list */ };