svn commit: r262364 - stable/10/sys/dev/usb/controller

Hans Petter Selasky hselasky at FreeBSD.org
Sun Feb 23 13:25:43 UTC 2014


Author: hselasky
Date: Sun Feb 23 13:25:43 2014
New Revision: 262364
URL: http://svnweb.freebsd.org/changeset/base/262364

Log:
  MFC r261981:
  Add new PCI ID for hardware which needs port routing for USB 3.0.
  
  PR:		usb/186811

Modified:
  stable/10/sys/dev/usb/controller/xhci_pci.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sys/dev/usb/controller/xhci_pci.c
==============================================================================
--- stable/10/sys/dev/usb/controller/xhci_pci.c	Sun Feb 23 13:22:04 2014	(r262363)
+++ stable/10/sys/dev/usb/controller/xhci_pci.c	Sun Feb 23 13:25:43 2014	(r262364)
@@ -102,6 +102,7 @@ xhci_pci_match(device_t self)
 	case 0x10421b21:
 		return ("ASMedia ASM1042 USB 3.0 controller");
 
+	case 0x9c318086:
 	case 0x1e318086:
 		return ("Intel Panther Point USB 3.0 controller");
 	case 0x8c318086:
@@ -237,6 +238,7 @@ xhci_pci_attach(device_t self)
 
 	/* On Intel chipsets reroute ports from EHCI to XHCI controller. */
 	switch (pci_get_devid(self)) {
+	case 0x9c318086:	/* Panther Point */
 	case 0x1e318086:	/* Panther Point */
 	case 0x8c318086:	/* Lynx Point */
 		sc->sc_port_route = &xhci_pci_port_route;


More information about the svn-src-stable-10 mailing list