git: 27ef84d447aa - stable/14 - cesa: Fix a typo in a device messsage
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 19 Nov 2025 11:26:59 UTC
The branch stable/14 has been updated by gbe:
URL: https://cgit.FreeBSD.org/src/commit/?id=27ef84d447aa304ac5119630151e9c0bcdb118c0
commit 27ef84d447aa304ac5119630151e9c0bcdb118c0
Author: Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2025-10-29 15:35:35 +0000
Commit: Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2025-11-19 11:26:49 +0000
cesa: Fix a typo in a device messsage
- s/exhaused/exhausted/
(cherry picked from commit 081aa26778f3facdd836c28b2e3fed5de2f8b7b4)
---
sys/dev/cesa/cesa.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sys/dev/cesa/cesa.c b/sys/dev/cesa/cesa.c
index 516aaec45387..d7f7bf5ee48a 100644
--- a/sys/dev/cesa/cesa.c
+++ b/sys/dev/cesa/cesa.c
@@ -287,7 +287,7 @@ cesa_alloc_tdesc(struct cesa_softc *sc)
CESA_GENERIC_ALLOC_LOCKED(sc, ctd, tdesc);
if (!ctd)
- device_printf(sc->sc_dev, "TDMA descriptors pool exhaused. "
+ device_printf(sc->sc_dev, "TDMA descriptors pool exhausted. "
"Consider increasing CESA_TDMA_DESCRIPTORS.\n");
return (ctd);
@@ -300,7 +300,7 @@ cesa_alloc_sdesc(struct cesa_softc *sc, struct cesa_request *cr)
CESA_GENERIC_ALLOC_LOCKED(sc, csd, sdesc);
if (!csd) {
- device_printf(sc->sc_dev, "SA descriptors pool exhaused. "
+ device_printf(sc->sc_dev, "SA descriptors pool exhausted. "
"Consider increasing CESA_SA_DESCRIPTORS.\n");
return (NULL);
}