Date: Wed, 14 Aug 2019 09:44:05 +0000 (UTC) From: Hans Petter Selasky <hselasky@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-11@freebsd.org Subject: svn commit: r351019 - stable/11/sys/dev/usb/controller Message-ID: <201908140944.x7E9i5w2076038@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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@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:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201908140944.x7E9i5w2076038>