svn commit: r351018 - stable/12/sys/dev/usb/controller

Hans Petter Selasky hselasky at FreeBSD.org
Wed Aug 14 09:43:28 UTC 2019


Author: hselasky
Date: Wed Aug 14 09:43:27 2019
New Revision: 351018
URL: https://svnweb.freebsd.org/changeset/base/351018

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

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

Modified: stable/12/sys/dev/usb/controller/xhci_pci.c
==============================================================================
--- stable/12/sys/dev/usb/controller/xhci_pci.c	Wed Aug 14 09:42:26 2019	(r351017)
+++ stable/12/sys/dev/usb/controller/xhci_pci.c	Wed Aug 14 09:43:27 2019	(r351018)
@@ -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-stable mailing list