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

Hans Petter Selasky hselasky at FreeBSD.org
Wed Aug 7 13:35:13 UTC 2019


Author: hselasky
Date: Wed Aug  7 13:35:13 2019
New Revision: 350675
URL: https://svnweb.freebsd.org/changeset/base/350675

Log:
  Correct PCI device ID for XHCI USB controller.
  
  Submitted by:	Dmitry Luhtionov <dmitryluhtionov at gmail.com>
  MFC after:	1 week
  Sponsored by:	Mellanox Technologies

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	Wed Aug  7 13:13:16 2019	(r350674)
+++ head/sys/dev/usb/controller/xhci_pci.c	Wed Aug  7 13:35:13 2019	(r350675)
@@ -149,7 +149,7 @@ xhci_pci_match(device_t self)
 		return ("Intel Lewisburg USB 3.0 controller");
 	case 0xa2af8086:
 		return ("Intel Union Point USB 3.0 controller");
-	case 0x36d88086:
+	case 0xa36d8086:
 		return ("Intel Cannon Lake USB 3.1 controller");
 
 	case 0xa01b177d:


More information about the svn-src-head mailing list