The branch stable/12 has been updated by gbe (doc committer): URL: https://cgit.FreeBSD.org/src/commit/?id=70af1069dedcde9c4e2a7873ae43d66edfa17110
commit 70af1069dedcde9c4e2a7873ae43d66edfa17110 Author: Gordon Bergling <[email protected]> AuthorDate: 2022-04-02 08:22:28 +0000 Commit: Gordon Bergling <[email protected]> CommitDate: 2022-04-09 06:30:21 +0000 jme(4): Fix a typo in a source code comment - s/watchog/watchdog (cherry picked from commit be83eecf5a81612675a679111b14486b31c9df05) --- sys/dev/jme/if_jme.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/dev/jme/if_jme.c b/sys/dev/jme/if_jme.c index f52f88e602ab..89b9f63cd385 100644 --- a/sys/dev/jme/if_jme.c +++ b/sys/dev/jme/if_jme.c @@ -2486,7 +2486,7 @@ jme_txeof(struct jme_softc *sc) ifp->if_drv_flags &= ~IFF_DRV_OACTIVE; } sc->jme_cdata.jme_tx_cons = cons; - /* Unarm watchog timer when there is no pending descriptors in queue. */ + /* Unarm watchdog timer when there is no pending descriptors in queue. */ if (sc->jme_cdata.jme_tx_cnt == 0) sc->jme_watchdog_timer = 0;
