git: 734c9698d9ae - main - et(4): Fix a typo in a source code comment
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 02 Aug 2023 07:10:08 UTC
The branch main has been updated by gbe:
URL: https://cgit.FreeBSD.org/src/commit/?id=734c9698d9ae83206a47daa40031a4de3bce9c28
commit 734c9698d9ae83206a47daa40031a4de3bce9c28
Author: Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2023-08-02 07:09:56 +0000
Commit: Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2023-08-02 07:09:56 +0000
et(4): Fix a typo in a source code comment
- s/diabled/disabled/
MFC after: 3 days
---
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 9cce5a3ae883..174cf6ed8b1a 100644
--- a/sys/dev/et/if_et.c
+++ b/sys/dev/et/if_et.c
@@ -1993,7 +1993,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);
}