diff options
author | 2005-06-24 20:06:11 +0000 | |
---|---|---|
committer | 2005-06-24 20:06:11 +0000 | |
commit | 0dd477c84886b49d2da2cb7a286dc59f880f482b (patch) | |
tree | 8fb6c8957691064f472d39f34c1bee4c8eea1078 | |
parent | err -> errx (diff) | |
download | wireguard-openbsd-0dd477c84886b49d2da2cb7a286dc59f880f482b.tar.xz wireguard-openbsd-0dd477c84886b49d2da2cb7a286dc59f880f482b.zip |
MSI Bluetooth adapters need the ubt_broken_devices quirk
ok grange@
-rw-r--r-- | sys/dev/usb/if_ubt.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/usb/if_ubt.c b/sys/dev/usb/if_ubt.c index 71995da8489..e50fb42ccdc 100644 --- a/sys/dev/usb/if_ubt.c +++ b/sys/dev/usb/if_ubt.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_ubt.c,v 1.1 2005/01/14 12:21:02 grange Exp $ */ +/* $OpenBSD: if_ubt.c,v 1.2 2005/06/24 20:06:11 martin Exp $ */ /* * ng_ubt.c @@ -27,7 +27,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: if_ubt.c,v 1.1 2005/01/14 12:21:02 grange Exp $ + * $Id: if_ubt.c,v 1.2 2005/06/24 20:06:11 martin Exp $ * $FreeBSD: src/sys/netgraph/bluetooth/drivers/ubt/ng_ubt.c,v 1.20 2004/10/12 23:33:46 emax Exp $ */ @@ -120,11 +120,11 @@ USB_MATCH(ubt) * 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. - * Currently I do not know of any such devices. */ Static struct usb_devno const ubt_broken_devices[] = { { USB_VENDOR_CSR, USB_PRODUCT_CSR_BLUECORE }, + { USB_VENDOR_MSI, USB_PRODUCT_MSI_BLUETOOTH }, { 0, 0 } /* This should be the last item in the list */ }; |