git: 551921a75775 - main - if_eqos: Fix a typo in a kernel error message
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 28 Jan 2024 15:42:27 UTC
The branch main has been updated by gbe:
URL: https://cgit.FreeBSD.org/src/commit/?id=551921a757758353af51cd0283e9e4bcee9a84d2
commit 551921a757758353af51cd0283e9e4bcee9a84d2
Author: Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2024-01-28 15:42:12 +0000
Commit: Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2024-01-28 15:42:12 +0000
if_eqos: Fix a typo in a kernel error message
- s/errer/error/
MFC after: 5 days
---
sys/dev/eqos/if_eqos.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys/dev/eqos/if_eqos.c b/sys/dev/eqos/if_eqos.c
index 17c820a1b191..566f6ffd0a42 100644
--- a/sys/dev/eqos/if_eqos.c
+++ b/sys/dev/eqos/if_eqos.c
@@ -687,7 +687,7 @@ eqos_rxintr(struct eqos_softc *sc)
break;
if (rdes3 & (EQOS_RDES3_OE | EQOS_RDES3_RE))
- printf("Receive errer rdes3=%08x\n", rdes3);
+ printf("Receive error rdes3=%08x\n", rdes3);
bus_dmamap_sync(sc->rx.buf_tag,
sc->rx.buf_map[sc->rx.head].map, BUS_DMASYNC_POSTREAD);