Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/dev/usb Match various Apple USB Bluetooth controllers.



details:   https://anonhg.NetBSD.org/src/rev/87a42dd1655e
branches:  trunk
changeset: 813760:87a42dd1655e
user:      riastradh <riastradh%NetBSD.org@localhost>
date:      Wed Feb 17 00:49:28 2016 +0000

description:
Match various Apple USB Bluetooth controllers.

>From mlelstv.

diffstat:

 sys/dev/usb/ubt.c |  18 +++++++++++++++---
 1 files changed, 15 insertions(+), 3 deletions(-)

diffs (39 lines):

diff -r 800b8636ad94 -r 87a42dd1655e sys/dev/usb/ubt.c
--- a/sys/dev/usb/ubt.c Wed Feb 17 00:48:57 2016 +0000
+++ b/sys/dev/usb/ubt.c Wed Feb 17 00:49:28 2016 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: ubt.c,v 1.51 2014/05/20 18:25:54 rmind Exp $   */
+/*     $NetBSD: ubt.c,v 1.52 2016/02/17 00:49:28 riastradh Exp $       */
 
 /*-
  * Copyright (c) 2006 Itronix Inc.
@@ -67,7 +67,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ubt.c,v 1.51 2014/05/20 18:25:54 rmind Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ubt.c,v 1.52 2016/02/17 00:49:28 riastradh Exp $");
 
 #include <sys/param.h>
 #include <sys/device.h>
@@ -309,7 +309,19 @@
 } ubt_dev[] = {
        { { USB_VENDOR_BROADCOM, USB_PRODUCT_BROADCOM_BCM2033NF },
          UMATCH_NONE },
-       { { USB_VENDOR_APPLE, USB_PRODUCT_APPLE_BLUETOOTH_HOST_C },
+       { { USB_VENDOR_APPLE, USB_PRODUCT_APPLE_BLUETOOTH_HOST_1 },
+         UMATCH_VENDOR_PRODUCT },
+       { { USB_VENDOR_APPLE, USB_PRODUCT_APPLE_BLUETOOTH_HOST_2 },
+         UMATCH_VENDOR_PRODUCT },
+       { { USB_VENDOR_APPLE, USB_PRODUCT_APPLE_BLUETOOTH_HOST_3 },
+         UMATCH_VENDOR_PRODUCT },
+       { { USB_VENDOR_APPLE, USB_PRODUCT_APPLE_BLUETOOTH_HOST_4 },
+         UMATCH_VENDOR_PRODUCT },
+       { { USB_VENDOR_APPLE, USB_PRODUCT_APPLE_BLUETOOTH_HOST_5 },
+         UMATCH_VENDOR_PRODUCT },
+       { { USB_VENDOR_APPLE, USB_PRODUCT_APPLE_BLUETOOTH_HOST_6 },
+         UMATCH_VENDOR_PRODUCT },
+       { { USB_VENDOR_APPLE, USB_PRODUCT_APPLE_BLUETOOTH_HOST_7 },
          UMATCH_VENDOR_PRODUCT },
 };
 #define ubt_lookup(vendor, product) \



Home | Main Index | Thread Index | Old Index