diff options
| author | Gordon Bergling <gbe@FreeBSD.org> | 2025-10-29 15:35:35 +0000 |
|---|---|---|
| committer | Gordon Bergling <gbe@FreeBSD.org> | 2025-10-31 18:50:41 +0000 |
| commit | 081aa26778f3facdd836c28b2e3fed5de2f8b7b4 (patch) | |
| tree | 3c99af8d49bc380ee7924f6d4dc67d2a9c8422c7 | |
| parent | 404af374b10ca56c6f82510a5bb23232a9f25c34 (diff) | |
cesa: Fix a typo in a device messsage
- s/exhaused/exhausted/
MFC after: 5 days
| -rw-r--r-- | sys/dev/cesa/cesa.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/cesa/cesa.c b/sys/dev/cesa/cesa.c index 405b619d6e5b..7439dcdbc1ee 100644 --- a/sys/dev/cesa/cesa.c +++ b/sys/dev/cesa/cesa.c @@ -286,7 +286,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); @@ -299,7 +299,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); } |
