[PATCH] Add product ID for Asus USB-BT400 Bluetooth adaptor

Raphael Kubo da Costa rakuco at FreeBSD.org
Sun Sep 1 18:00:15 UTC 2013


>Submitter-Id:	current-users
>Originator:	Raphael Kubo da Costa
>Organization:	FreeBSD Project
>Confidential:	no 
>Synopsis:	[PATCH] Add product ID for Asus USB-BT400 Bluetooth adaptor
>Severity:	non-critical
>Priority:	low
>Category:	kern
>Class:		change-request
>Release:	FreeBSD 10.0-CURRENT amd64
>Environment:
System: FreeBSD orwell 10.0-CURRENT FreeBSD 10.0-CURRENT #2 r255096: Sat Aug 31 19:35:58 EEST 2013 root at 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 ---


More information about the freebsd-net mailing list