The branch stable/15 has been updated by gbe:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=03d13410ea7877c935704b864fcc51aceb69b808

commit 03d13410ea7877c935704b864fcc51aceb69b808
Author:     Gordon Bergling <[email protected]>
AuthorDate: 2025-10-29 15:14:23 +0000
Commit:     Gordon Bergling <[email protected]>
CommitDate: 2025-11-08 20:15:57 +0000

    arm/ti: Fix typo in a KASSERT message
    
    - s/patcket/packet/
    
    (cherry picked from commit 862024c00f3126220ac425f9ec1f3d4286064688)
---
 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 */

Reply via email to