xhci: Correct name of HCCPARAMS Register

On inital import the name of HCCPARAMS1 was misnamed as HCSPARAMS0.
HCCPARAMS1 is defined in section 5.3.6 of xHCI Specification 1.2b (April
2023).

Reviewed by:	adrian
Sponsored by:	The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D53895
This commit is contained in:
Tom Jones
2025-12-05 10:07:46 +00:00
parent f327659e04
commit 2343516042
5 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -2354,7 +2354,7 @@ pci_xhci_hostcap_read(struct pci_xhci_softc *sc, uint64_t offset)
value = sc->hcsparams3;
break;
case XHCI_HCSPARAMS0: /* 0x10 */
case XHCI_HCCPARAMS1: /* 0x10 */
value = sc->hccparams1;
break;