summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoremax <emax@FreeBSD.org>2005-05-28 00:48:42 +0000
committeremax <emax@FreeBSD.org>2005-05-28 00:48:42 +0000
commitd8ef44d756feff000ac3377787b1da0ed1b8f705 (patch)
tree87a369672bd2f8d344ce57ba6cc63abaa39e7708
parent282986422833cd4184586d08f2f9ec00f080444e (diff)
downloadFreeBSD-src-d8ef44d756feff000ac3377787b1da0ed1b8f705.zip
FreeBSD-src-d8ef44d756feff000ac3377787b1da0ed1b8f705.tar.gz
Move AVM USB Bluetooth-Adapter BlueFritz! from "broken" devices list
(where I incorrectly put it initially) to "ignored" devices list (where it should be). Pointy hat goes to me. MFC after: 3 days
-rw-r--r--sys/netgraph/bluetooth/drivers/ubt/ng_ubt.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/sys/netgraph/bluetooth/drivers/ubt/ng_ubt.c b/sys/netgraph/bluetooth/drivers/ubt/ng_ubt.c
index f424a05..3650535 100644
--- a/sys/netgraph/bluetooth/drivers/ubt/ng_ubt.c
+++ b/sys/netgraph/bluetooth/drivers/ubt/ng_ubt.c
@@ -258,8 +258,8 @@ USB_MATCH(ubt)
{
/*
* If for some reason device should not be attached then put
- * VendorID/ProductID pair into the list below. Currently I
- * do not know of any such devices. The format is as follows:
+ * VendorID/ProductID pair into the list below. The format is
+ * as follows:
*
* { VENDOR_ID, PRODUCT_ID },
*
@@ -267,17 +267,19 @@ 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 */
};
/*
* If device violates Bluetooth specification and has bDeviceClass,
* bDeviceSubClass and bDeviceProtocol set to wrong values then you
- * could try to put VendorID/ProductID pair into the list below.
+ * could try to put VendorID/ProductID pair into the list below.
+ * Adding VendorID/ProductID pair into this list forces ng_ubt(4)
+ * to attach to the broken device.
*/
Static struct usb_devno const ubt_broken_devices[] = {
- { USB_VENDOR_AVM, 0x3800 }, /* AVM USB Bluetooth-Adapter BlueFritz! */
{ 0, 0 } /* This should be the last item in the list */
};
OpenPOWER on IntegriCloud