svn commit: r289029 - head/sys/dev/usb/controller

Hans Petter Selasky hselasky at FreeBSD.org
Thu Oct 8 13:39:29 UTC 2015


Author: hselasky
Date: Thu Oct  8 13:39:27 2015
New Revision: 289029
URL: https://svnweb.freebsd.org/changeset/base/289029

Log:
  Add quirk for USB 3.0 PCI device.
  
  Submitted by:	Gary Jennejohn <gj at freebsd.org>
  MFC after:	1 week

Modified:
  head/sys/dev/usb/controller/xhci_pci.c

Modified: head/sys/dev/usb/controller/xhci_pci.c
==============================================================================
--- head/sys/dev/usb/controller/xhci_pci.c	Thu Oct  8 12:55:21 2015	(r289028)
+++ head/sys/dev/usb/controller/xhci_pci.c	Thu Oct  8 13:39:27 2015	(r289029)
@@ -199,6 +199,7 @@ xhci_pci_attach(device_t self)
 
 	switch (pci_get_devid(self)) {
 	case 0x01941033:	/* NEC uPD720200 USB 3.0 controller */
+	case 0x00141912:	/* NEC uPD720201 USB 3.0 controller */
 		/* Don't use 64-bit DMA on these controllers. */
 		usedma32 = 1;
 		break;


More information about the svn-src-head mailing list