Date: Sun, 01 Sep 2013 11:00:11 -0700 (PDT) From: Raphael Kubo da Costa <rakuco@FreeBSD.org> To: FreeBSD-gnats-submit@freebsd.org Cc: freebsd-net@FreeBSD.org, hselasky@FreeBSD.org Subject: kern/181728: [PATCH] Add product ID for Asus USB-BT400 Bluetooth adaptor Message-ID: <522380ab.811c980a.63e7.ffff829a@mx.google.com> Resent-Message-ID: <201309011810.r81IA0cY093394@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
>Number: 181728 >Category: kern >Synopsis: [PATCH] Add product ID for Asus USB-BT400 Bluetooth adaptor >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Sep 01 18:10:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Raphael Kubo da Costa >Release: FreeBSD 10.0-CURRENT amd64 >Organization: FreeBSD Project >Environment: System: FreeBSD orwell 10.0-CURRENT FreeBSD 10.0-CURRENT #2 r255096: Sat Aug 31 19:35:58 EEST 2013 root@orwell:/usr/obj/usr/src/sys/ORWELL amd64 >Description: The attached patch adds another product ID to the list of devices using the BCM20702A0 chipset, ASUS USB-BT400. usbconfig dump_device_desc output: ugen2.3: <BCM20702A0 Broadcom Corp> at usbus2, cfg=0 md=HOST spd=FULL (12Mbps) pwr=ON (100mA) bLength = 0x0012 bDescriptorType = 0x0001 bcdUSB = 0x0200 bDeviceClass = 0x00ff bDeviceSubClass = 0x0001 bDeviceProtocol = 0x0001 bMaxPacketSize0 = 0x0040 idVendor = 0x0b05 idProduct = 0x17cb bcdDevice = 0x0112 iManufacturer = 0x0001 <Broadcom Corp> iProduct = 0x0002 <BCM20702A0> iSerialNumber = 0x0003 <000272C64400> bNumConfigurations = 0x0001 >How-To-Repeat: >Fix: --- ng_ubt-asus-17cb.diff begins here --- Index: sys/netgraph/bluetooth/drivers/ubt/ng_ubt.c =================================================================== --- sys/netgraph/bluetooth/drivers/ubt/ng_ubt.c (revision 255096) +++ sys/netgraph/bluetooth/drivers/ubt/ng_ubt.c (working copy) @@ -494,6 +494,7 @@ /* Broadcom BCM20702A0 */ { USB_VPI(USB_VENDOR_ASUS, 0x17b5, 0) }, + { USB_VPI(USB_VENDOR_ASUS, 0x17cb, 0) }, { USB_VPI(USB_VENDOR_LITEON, 0x2003, 0) }, { USB_VPI(USB_VENDOR_FOXCONN, 0xe042, 0) }, { USB_VPI(USB_VENDOR_DELL, 0x8197, 0) }, --- ng_ubt-asus-17cb.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?522380ab.811c980a.63e7.ffff829a>