svn commit: r351019 - stable/11/sys/dev/usb/controller
Hans Petter Selasky
hselasky at FreeBSD.org
Wed Aug 14 09:44:05 UTC 2019
Author: hselasky
Date: Wed Aug 14 09:44:04 2019
New Revision: 351019
URL: https://svnweb.freebsd.org/changeset/base/351019
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/11/sys/dev/usb/controller/xhci_pci.c
Directory Properties:
stable/11/ (props changed)
Modified: stable/11/sys/dev/usb/controller/xhci_pci.c
==============================================================================
--- stable/11/sys/dev/usb/controller/xhci_pci.c Wed Aug 14 09:43:27 2019 (r351018)
+++ stable/11/sys/dev/usb/controller/xhci_pci.c Wed Aug 14 09:44:04 2019 (r351019)
@@ -147,7 +147,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-11
mailing list