git: ede5eb7e4a3d - stable/13 - et(4): Fix a typo in a source code comment
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 05 Aug 2023 04:41:07 UTC
The branch stable/13 has been updated by gbe: URL: https://cgit.FreeBSD.org/src/commit/?id=ede5eb7e4a3d9331c85bcd6a23058fbfe9d628a5 commit ede5eb7e4a3d9331c85bcd6a23058fbfe9d628a5 Author: Gordon Bergling <gbe@FreeBSD.org> AuthorDate: 2023-08-02 07:09:56 +0000 Commit: Gordon Bergling <gbe@FreeBSD.org> CommitDate: 2023-08-05 04:38:45 +0000 et(4): Fix a typo in a source code comment - s/diabled/disabled/ (cherry picked from commit 734c9698d9ae83206a47daa40031a4de3bce9c28) --- sys/dev/et/if_et.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/dev/et/if_et.c b/sys/dev/et/if_et.c index 99865142bf37..0d0c0c73a33d 100644 --- a/sys/dev/et/if_et.c +++ b/sys/dev/et/if_et.c @@ -2000,7 +2000,7 @@ et_init_txmac(struct et_softc *sc) */ CSR_WRITE_4(sc, ET_TXMAC_FLOWCTRL, 0 << ET_TXMAC_FLOWCTRL_CFPT_SHIFT); - /* Enable TX MAC but leave FC(?) diabled */ + /* Enable TX MAC but leave FC(?) disabled */ CSR_WRITE_4(sc, ET_TXMAC_CTRL, ET_TXMAC_CTRL_ENABLE | ET_TXMAC_CTRL_FC_DISABLE); }