The branch stable/15 has been updated by gbe: URL: https://cgit.FreeBSD.org/src/commit/?id=6946e9afadefb86be9630cbc2fdad4f741f73e5d
commit 6946e9afadefb86be9630cbc2fdad4f741f73e5d Author: Gordon Bergling <[email protected]> AuthorDate: 2025-12-13 09:43:49 +0000 Commit: Gordon Bergling <[email protected]> CommitDate: 2026-01-10 13:09:38 +0000 mps(4): Fix a typo in a device message - s/reseting/resetting/ (cherry picked from commit bcc735cb710fb74d1fb5f7be3d37701343c58ccd) --- sys/dev/mps/mps.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/dev/mps/mps.c b/sys/dev/mps/mps.c index 9dfa0471ac0a..357eacf28925 100644 --- a/sys/dev/mps/mps.c +++ b/sys/dev/mps/mps.c @@ -518,7 +518,7 @@ mps_iocfacts_allocate(struct mps_softc *sc, uint8_t attaching) */ if (attaching && ((sc->facts->IOCCapabilities & MPI2_IOCFACTS_CAPABILITY_EVENT_REPLAY) == 0)) { - mps_dprint(sc, MPS_INIT, "No event replay, reseting\n"); + mps_dprint(sc, MPS_INIT, "No event replay, resetting\n"); mps_diag_reset(sc, NO_SLEEP); if ((error = mps_transition_ready(sc)) != 0) { mps_dprint(sc, MPS_INIT|MPS_FAULT, "Failed to "
