git: 862024c00f31 - main - arm/ti: Fix typo in a KASSERT message

From: Gordon Bergling <gbe_at_FreeBSD.org>
Date: Wed, 29 Oct 2025 15:45:45 UTC
The branch main has been updated by gbe:

URL: https://cgit.FreeBSD.org/src/commit/?id=862024c00f3126220ac425f9ec1f3d4286064688

commit 862024c00f3126220ac425f9ec1f3d4286064688
Author:     Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2025-10-29 15:14:23 +0000
Commit:     Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2025-10-29 15:45:15 +0000

    arm/ti: Fix typo in a KASSERT message
    
    - s/patcket/packet/
    
    MFC after:      5 days
---
 sys/arm/ti/cpsw/if_cpsw.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/arm/ti/cpsw/if_cpsw.c b/sys/arm/ti/cpsw/if_cpsw.c
index dc3d8b1f9023..e2cc9ee0d7b2 100644
--- a/sys/arm/ti/cpsw/if_cpsw.c
+++ b/sys/arm/ti/cpsw/if_cpsw.c
@@ -1646,7 +1646,7 @@ cpsw_rx_dequeue(struct cpsw_softc *sc)
 
 		port = (bd.flags & CPDMA_BD_PORT_MASK) - 1;
 		KASSERT(port >= 0 && port <= 1,
-		    ("patcket received with invalid port: %d", port));
+		    ("packet received with invalid port: %d", port));
 		psc = device_get_softc(sc->port[port].dev);
 
 		/* Set up mbuf */