git: 6063ec2f429d - stable/13 - xhci(4): Describe AMD 400 Series USB 3.1 controllers
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 06 Aug 2023 20:36:23 UTC
The branch stable/13 has been updated by marius: URL: https://cgit.FreeBSD.org/src/commit/?id=6063ec2f429d924a36c6b3e8bb706a681cdd6019 commit 6063ec2f429d924a36c6b3e8bb706a681cdd6019 Author: Marius Strobl <marius@FreeBSD.org> AuthorDate: 2023-07-22 21:13:46 +0000 Commit: Marius Strobl <marius@FreeBSD.org> CommitDate: 2023-08-06 17:16:30 +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 (cherry picked from commit 83e67a9d14d9cf3830cd52f4f49117bf7220ac49) --- 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 e6c9c49e6e66..6df85be9c811 100644 --- a/sys/dev/usb/controller/xhci_pci.c +++ b/sys/dev/usb/controller/xhci_pci.c @@ -108,7 +108,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: