Date: Sun, 3 Mar 2024 17:51:08 GMT From: Gordon Bergling <gbe@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org Subject: git: 5c765273cea5 - stable/13 - bxe(4): Fix two typos in a kernel messages Message-ID: <202403031751.423Hp8Ce078756@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch stable/13 has been updated by gbe: URL: https://cgit.FreeBSD.org/src/commit/?id=5c765273cea5154002842adf1889a3ba09bd31aa commit 5c765273cea5154002842adf1889a3ba09bd31aa Author: Gordon Bergling <gbe@FreeBSD.org> AuthorDate: 2024-02-27 16:38:53 +0000 Commit: Gordon Bergling <gbe@FreeBSD.org> CommitDate: 2024-03-03 17:50:04 +0000 bxe(4): Fix two typos in a kernel messages - s/successfull/successful/ (cherry picked from commit e2f36496136975d4b591b230a71986f1508629c1) --- sys/dev/bxe/bxe.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/dev/bxe/bxe.c b/sys/dev/bxe/bxe.c index 47d2001e28f9..cfe642eafeb2 100644 --- a/sys/dev/bxe/bxe.c +++ b/sys/dev/bxe/bxe.c @@ -12531,7 +12531,7 @@ bxe_parity_recover(struct bxe_softc *sc) error_unrecovered++; sc->recovery_state = BXE_RECOVERY_FAILED; sc->state = BXE_STATE_ERROR; - BLOGE(sc, "Recovery is NOT successfull, " + BLOGE(sc, "Recovery is NOT successful, " " state=0x%x recovery_state=0x%x error=%x\n", sc->state, sc->recovery_state, sc->error_status); sc->error_status = 0; @@ -12539,7 +12539,7 @@ bxe_parity_recover(struct bxe_softc *sc) sc->recovery_state = BXE_RECOVERY_DONE; error_recovered++; - BLOGI(sc, "Recovery is successfull from errors %x," + BLOGI(sc, "Recovery is successful from errors %x," " state=0x%x" " recovery_state=0x%x \n", sc->error_status, sc->state, sc->recovery_state);
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202403031751.423Hp8Ce078756>