aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGordon Bergling <gbe@FreeBSD.org>2026-06-14 08:50:59 +0000
committerGordon Bergling <gbe@FreeBSD.org>2026-06-14 08:50:59 +0000
commit0ea84e9cce72e9df9d621b731ddd7247e175b3a7 (patch)
tree47776ece530d9317a1345d93068a6d8356ab8c72
parent6280a0630089d6e1726f9942ce9118556a32bb59 (diff)
et(4): Fix a typo in a source code comment
- s/Diable/Disable/ MFC after: 3 days
-rw-r--r--sys/dev/et/if_et.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/et/if_et.c b/sys/dev/et/if_et.c
index 399c9fa77989..665ac29171b7 100644
--- a/sys/dev/et/if_et.c
+++ b/sys/dev/et/if_et.c
@@ -2699,7 +2699,7 @@ et_suspend(device_t dev)
ET_LOCK(sc);
if ((if_getdrvflags(sc->ifp) & IFF_DRV_RUNNING) != 0)
et_stop(sc);
- /* Diable all clocks and put PHY into COMA. */
+ /* Disable all clocks and put PHY into COMA. */
pmcfg = CSR_READ_4(sc, ET_PM);
pmcfg &= ~(EM_PM_GIGEPHY_ENB | ET_PM_SYSCLK_GATE | ET_PM_TXCLK_GATE |
ET_PM_RXCLK_GATE);