git: 33e0180a306b - main - thunderbolt: Fix a typo in a source code comment
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 19 Apr 2026 08:12:18 UTC
The branch main has been updated by gbe:
URL: https://cgit.FreeBSD.org/src/commit/?id=33e0180a306b9ed60df5eae1818c40ef65750525
commit 33e0180a306b9ed60df5eae1818c40ef65750525
Author: Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2026-04-19 08:04:12 +0000
Commit: Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2026-04-19 08:12:02 +0000
thunderbolt: Fix a typo in a source code comment
- s/Inititalize/Initialize/
MFC after: 3 days
---
sys/dev/thunderbolt/nhi.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys/dev/thunderbolt/nhi.c b/sys/dev/thunderbolt/nhi.c
index 74cefbb50ca1..9550de258dab 100644
--- a/sys/dev/thunderbolt/nhi.c
+++ b/sys/dev/thunderbolt/nhi.c
@@ -571,7 +571,7 @@ nhi_alloc_ring0(struct nhi_softc *sc)
TAILQ_INSERT_TAIL(&r->rx_head, cmd, cm_link);
}
- /* Inititalize the TX frames */
+ /* Initialize the TX frames */
for ( ; i < r->tx_ring_depth + r->rx_ring_depth - 1; i++) {
cmd = &sc->ring0_cmds[i];
cmd->data = (uint32_t *)(frames + NHI_RING0_FRAME_SIZE * i);