diff options
author | Giorgos Keramidas <keramida@FreeBSD.org> | 2008-11-12 13:58:59 +0000 |
---|---|---|
committer | Giorgos Keramidas <keramida@FreeBSD.org> | 2008-11-12 13:58:59 +0000 |
commit | 7d4723c325ea00a5a438682c74433985a6c20e1f (patch) | |
tree | d1c47d682e1a684759c9b2173f8eef75ee6576b0 | |
parent | 94d754a5c7a4dc3eda68fc62378896eb6aeb2c0f (diff) |
Notes
-rw-r--r-- | sys/dev/usb/if_aue.c | 9 | ||||
-rw-r--r-- | sys/dev/usb/usbdevs | 1 |
2 files changed, 10 insertions, 0 deletions
diff --git a/sys/dev/usb/if_aue.c b/sys/dev/usb/if_aue.c index 463129b24e33..1c6d8a3fe862 100644 --- a/sys/dev/usb/if_aue.c +++ b/sys/dev/usb/if_aue.c @@ -630,6 +630,15 @@ aue_match(device_t self) if (uaa->iface != NULL) return (UMATCH_NONE); + /* + * Belkin USB Bluetooth dongles of the F8T012xx1 model series conflict + * with older Belkin USB2LAN adapters. Skip if_aue if we detect one of + * the devices that look like Bluetooth adapters. + */ + if (uaa->vendor == USB_VENDOR_BELKIN && + uaa->product == USB_PRODUCT_BELKIN_F8T012 && uaa->release == 0x0413) + return (UMATCH_NONE); + return (aue_lookup(uaa->vendor, uaa->product) != NULL ? UMATCH_VENDOR_PRODUCT : UMATCH_NONE); } diff --git a/sys/dev/usb/usbdevs b/sys/dev/usb/usbdevs index 00b9ec6660d7..671b3274cd28 100644 --- a/sys/dev/usb/usbdevs +++ b/sys/dev/usb/usbdevs @@ -932,6 +932,7 @@ product BELKIN FBT003V 0x0084 FBT003v2 Bluetooth product BELKIN F5U103 0x0103 F5U103 Serial product BELKIN F5U109 0x0109 F5U109 Serial product BELKIN USB2SCSI 0x0115 USB to SCSI +product BELKIN F8T012 0x0121 F8T012xx1 Bluetooth USB Adapter product BELKIN USB2LAN 0x0121 USB to LAN product BELKIN F5U208 0x0208 F5U208 VideoBus II product BELKIN F5U237 0x0237 F5U237 USB 2.0 7-Port Hub |