git: 83e67a9d14d9 - main - xhci(4): Describe AMD 400 Series USB 3.1 controllers
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 23 Jul 2023 07:22:46 UTC
The branch main has been updated by marius: URL: https://cgit.FreeBSD.org/src/commit/?id=83e67a9d14d9cf3830cd52f4f49117bf7220ac49 commit 83e67a9d14d9cf3830cd52f4f49117bf7220ac49 Author: Marius Strobl <marius@FreeBSD.org> AuthorDate: 2023-07-22 21:13:46 +0000 Commit: Marius Strobl <marius@FreeBSD.org> CommitDate: 2023-07-23 07:21:46 +0000 xhci(4): Describe AMD 400 Series USB 3.1 controllers While at it, correct the string for 300 series ones, these also are already xHCI 3.1. Fixes: d171d2f2 Add AHCI/XHCI device IDs found on AMD Ryzen+B350 system --- sys/dev/usb/controller/xhci_pci.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sys/dev/usb/controller/xhci_pci.c b/sys/dev/usb/controller/xhci_pci.c index 05341e161d91..484e1ff40219 100644 --- a/sys/dev/usb/controller/xhci_pci.c +++ b/sys/dev/usb/controller/xhci_pci.c @@ -106,7 +106,9 @@ xhci_pci_match(device_t self) return ("AMD X399 USB 3.0 controller"); case 0x43b91022: /* X370 */ case 0x43bb1022: /* B350 */ - return ("AMD 300 Series USB 3.0 controller"); + return ("AMD 300 Series USB 3.1 controller"); + case 0x43d51022: + return ("AMD 400 Series USB 3.1 controller"); case 0x78121022: case 0x78141022: case 0x79141022: