The branch stable/13 has been updated by gbe (doc committer): URL: https://cgit.FreeBSD.org/src/commit/?id=ed51829cbb83128ae19c4871277b3bfffddb7209
commit ed51829cbb83128ae19c4871277b3bfffddb7209 Author: Gordon Bergling <[email protected]> AuthorDate: 2022-04-02 08:22:28 +0000 Commit: Gordon Bergling <[email protected]> CommitDate: 2022-04-09 06:07:29 +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 ccb9944b36e5..754f9aff61c2 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;
