The branch stable/14 has been updated by gbe: URL: https://cgit.FreeBSD.org/src/commit/?id=88b980ad94746c58a43dbf0f92e3e8c56f578d1a
commit 88b980ad94746c58a43dbf0f92e3e8c56f578d1a Author: Gordon Bergling <[email protected]> AuthorDate: 2025-10-29 15:14:23 +0000 Commit: Gordon Bergling <[email protected]> CommitDate: 2025-11-19 11:22:44 +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 8cb748cfc119..f56dfc651260 100644 --- a/sys/arm/ti/cpsw/if_cpsw.c +++ b/sys/arm/ti/cpsw/if_cpsw.c @@ -1650,7 +1650,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 */
