The branch stable/14 has been updated by gbe: URL: https://cgit.FreeBSD.org/src/commit/?id=a7ce2f34b43e102595b7eb31248726b5d8da63e0
commit a7ce2f34b43e102595b7eb31248726b5d8da63e0 Author: Gordon Bergling <[email protected]> AuthorDate: 2025-10-29 15:12:52 +0000 Commit: Gordon Bergling <[email protected]> CommitDate: 2025-11-19 11:22:43 +0000 arm/mv: Fix typo in a kernel error message - s/Unkown/Unknown/ (cherry picked from commit b074d146969d3097c1e144623360b36083d74927) --- sys/arm/mv/mv_cp110_icu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/arm/mv/mv_cp110_icu.c b/sys/arm/mv/mv_cp110_icu.c index c29a22538622..deab2e2c4626 100644 --- a/sys/arm/mv/mv_cp110_icu.c +++ b/sys/arm/mv/mv_cp110_icu.c @@ -258,7 +258,7 @@ mv_cp110_icu_init(struct mv_cp110_icu_softc *sc, uint64_t addr) WR4(sc, ICU_SETSPI_SEI_AH, (addr >> 32) & UINT32_MAX); break; default: - panic("Unkown ICU type."); + panic("Unknown ICU type."); } sc->initialized = true;
