svn commit: r292992 - in head/sys/dev/usb: . net

Kristof Provost kp at FreeBSD.org
Thu Dec 31 18:12:37 UTC 2015


Author: kp
Date: Thu Dec 31 18:12:35 2015
New Revision: 292992
URL: https://svnweb.freebsd.org/changeset/base/292992

Log:
  Add suppoort for the Sitecom LN-031
  
  This is an AX88178 chip, which we already support so all we have to do is add
  the USB product and vendor ID.

Modified:
  head/sys/dev/usb/net/if_axe.c
  head/sys/dev/usb/usbdevs

Modified: head/sys/dev/usb/net/if_axe.c
==============================================================================
--- head/sys/dev/usb/net/if_axe.c	Thu Dec 31 17:51:15 2015	(r292991)
+++ head/sys/dev/usb/net/if_axe.c	Thu Dec 31 18:12:35 2015	(r292992)
@@ -175,6 +175,7 @@ static const STRUCT_USB_HOST_ID axe_devs
 	AXE_DEV(PLANEX3, GU1000T, AXE_FLAG_178),
 	AXE_DEV(SITECOM, LN029, 0),
 	AXE_DEV(SITECOMEU, LN028, AXE_FLAG_178),
+	AXE_DEV(SITECOMEU, LN031, AXE_FLAG_178),
 	AXE_DEV(SYSTEMTALKS, SGCX2UL, 0),
 #undef AXE_DEV
 };

Modified: head/sys/dev/usb/usbdevs
==============================================================================
--- head/sys/dev/usb/usbdevs	Thu Dec 31 17:51:15 2015	(r292991)
+++ head/sys/dev/usb/usbdevs	Thu Dec 31 18:12:35 2015	(r292992)
@@ -4203,6 +4203,7 @@ product SITECOMEU RTL8188CU_1	0x0052	RTL
 product SITECOMEU RTL8188CU_2	0x005c	RTL8188CU
 product SITECOMEU RTL8192CU	0x0061	RTL8192CU
 product SITECOMEU LN032		0x0072	LN-032
+product SITECOMEU LN031  	0x0056	LN-031
 product SITECOMEU LN028		0x061c	LN-028
 product SITECOMEU WL113		0x9071	WL-113
 product SITECOMEU ZD1211B	0x9075	ZD1211B


More information about the svn-src-all mailing list