diff options
author | Hans Petter Selasky <hselasky@FreeBSD.org> | 2022-02-24 09:58:32 +0000 |
---|---|---|
committer | Hans Petter Selasky <hselasky@FreeBSD.org> | 2022-02-24 09:58:32 +0000 |
commit | ed5fb5ccdbd763d0e96cd24bcf865db5ad614d16 (patch) | |
tree | 19133ea159185ce5a6faa5adfb156c2f12d594de | |
parent | d9addaa0ba450aad9ed40371059cbea0d10d3d2e (diff) |
usb(4): Belatedly add a PCI device ID for AMD Bolton chipset
(cherry picked from commit 379797d4b4865336f56e327640f574f1e2956a7d)
-rw-r--r-- | sys/dev/usb/controller/xhci_pci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/usb/controller/xhci_pci.c b/sys/dev/usb/controller/xhci_pci.c index b5d327ad6cd7..6b7715955374 100644 --- a/sys/dev/usb/controller/xhci_pci.c +++ b/sys/dev/usb/controller/xhci_pci.c @@ -103,8 +103,8 @@ xhci_pci_match(device_t self) case 0x43b91022: /* X370 */ case 0x43bb1022: /* B350 */ return ("AMD 300 Series USB 3.0 controller"); + case 0x78121022: case 0x78141022: - return ("AMD FCH USB 3.0 controller"); case 0x79141022: return ("AMD FCH USB 3.0 controller"); |