diff options
author | emax <emax@FreeBSD.org> | 2005-07-19 00:33:37 +0000 |
---|---|---|
committer | emax <emax@FreeBSD.org> | 2005-07-19 00:33:37 +0000 |
commit | 04e568f7df6d7c4f5f8727ddd675dc022bcc7d49 (patch) | |
tree | a2688bc3c82712aa65989effb4a618d183f84e53 | |
parent | 17d84e4e129c5a613e4d4250ad3acab7cf6c320a (diff) | |
download | FreeBSD-src-04e568f7df6d7c4f5f8727ddd675dc022bcc7d49.zip FreeBSD-src-04e568f7df6d7c4f5f8727ddd675dc022bcc7d49.tar.gz |
Ignore AVM BlueFRITZ! USB Bluetooth Adapter v1.0 (product ID 0x2200).
It does not work with ng_ubt(4) and require special driver and firmware.
Obtained from: Marcel Holtmann < marcel at holtmann dot org >
Submitted by: Rainer Goellner < rainer at jabbe dot de >
MFC after: 3 days
-rw-r--r-- | sys/netgraph/bluetooth/drivers/ubt/ng_ubt.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/netgraph/bluetooth/drivers/ubt/ng_ubt.c b/sys/netgraph/bluetooth/drivers/ubt/ng_ubt.c index 0b12a4d..089ae72 100644 --- a/sys/netgraph/bluetooth/drivers/ubt/ng_ubt.c +++ b/sys/netgraph/bluetooth/drivers/ubt/ng_ubt.c @@ -267,6 +267,7 @@ USB_MATCH(ubt) */ Static struct usb_devno const ubt_ignored_devices[] = { + { USB_VENDOR_AVM, 0x2200 }, /* AVM USB Bluetooth-Adapter BlueFritz! v1.0 */ { 0, 0 } /* This should be the last item in the list */ }; |