Date: Thu, 17 Mar 2022 12:28:10 GMT From: Hans Petter Selasky <hselasky@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org Subject: git: 0520911be878 - releng/13.1 - xhci(4): Add quirk for "Fresco Logic FL1009 USB3.0 xHCI Controller". Message-ID: <202203171228.22HCSA2s083860@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch releng/13.1 has been updated by hselasky: URL: https://cgit.FreeBSD.org/src/commit/?id=0520911be878f9bdffd7231050c875ebfc6c9ece commit 0520911be878f9bdffd7231050c875ebfc6c9ece Author: Hans Petter Selasky <hselasky@FreeBSD.org> AuthorDate: 2022-03-16 15:48:12 +0000 Commit: Hans Petter Selasky <hselasky@FreeBSD.org> CommitDate: 2022-03-17 12:26:07 +0000 xhci(4): Add quirk for "Fresco Logic FL1009 USB3.0 xHCI Controller". Submitted by: John F Carr <jfc@mit.edu> Sponsored by: NVIDIA Networking Approved by: re (gjb) (cherry picked from commit 19837718ab51756183046e5162b8b3b7b3cb8c3d) (cherry picked from commit 19b779498ca7c2ea1cc24cf1ede62c22b4d09a42) --- sys/dev/usb/controller/xhci_pci.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sys/dev/usb/controller/xhci_pci.c b/sys/dev/usb/controller/xhci_pci.c index be12d8c33382..c35cd08b3341 100644 --- a/sys/dev/usb/controller/xhci_pci.c +++ b/sys/dev/usb/controller/xhci_pci.c @@ -287,6 +287,7 @@ xhci_pci_attach(device_t self) sc->sc_io_size = rman_get_size(sc->sc_io_res); switch (pci_get_devid(self)) { + case 0x10091b73: /* Fresco Logic FL1009 USB3.0 xHCI Controller */ case 0x8241104c: /* TUSB73x0 USB3.0 xHCI Controller */ sc->sc_no_deconfigure = 1; break;
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202203171228.22HCSA2s083860>