git: 2e7e5bf0d972 - stable/14 - et(4): Fix a typo in a source code comment

From: Gordon Bergling <gbe_at_FreeBSD.org>
Date: Wed, 17 Jun 2026 04:53:11 UTC
The branch stable/14 has been updated by gbe:

URL: https://cgit.FreeBSD.org/src/commit/?id=2e7e5bf0d972603c041f31eb60c9376c3d8dd88b

commit 2e7e5bf0d972603c041f31eb60c9376c3d8dd88b
Author:     Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2026-06-14 08:50:59 +0000
Commit:     Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2026-06-17 04:50:52 +0000

    et(4): Fix a typo in a source code comment
    
    - s/Diable/Disable/
    
    (cherry picked from commit 0ea84e9cce72e9df9d621b731ddd7247e175b3a7)
---
 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 5f5911eb2ae6..f5f0b0d7ee95 100644
--- a/sys/dev/et/if_et.c
+++ b/sys/dev/et/if_et.c
@@ -2702,7 +2702,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);