aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGordon Bergling <gbe@FreeBSD.org>2025-10-29 15:38:59 +0000
committerGordon Bergling <gbe@FreeBSD.org>2025-10-31 18:50:41 +0000
commita25172844edaaa7e18c1dcecb6df8b8832456334 (patch)
tree8d216c295cb08ba186180e42a99b8b8b36058c9c
parentdefe77554d134964d7c197a2f3ca552778e8b41a (diff)
mfi(4): Fix a typo in a KASSERT message
- s/dissappeared/disappeared/ MFC after: 5 days
-rw-r--r--sys/dev/mfi/mfi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/mfi/mfi.c b/sys/dev/mfi/mfi.c
index 13e5dfc84fd1..a7d98f06aea3 100644
--- a/sys/dev/mfi/mfi.c
+++ b/sys/dev/mfi/mfi.c
@@ -2829,7 +2829,7 @@ mfi_check_command_post(struct mfi_softc *sc, struct mfi_command *cm)
if (ld->ld_id == cm->cm_frame->dcmd.mbox[0])
break;
}
- KASSERT(ld != NULL, ("volume dissappeared"));
+ KASSERT(ld != NULL, ("volume disappeared"));
if (cm->cm_frame->header.cmd_status == MFI_STAT_OK) {
mtx_unlock(&sc->mfi_io_lock);
bus_topo_lock();