aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGordon Bergling <gbe@FreeBSD.org>2025-12-13 09:47:40 +0000
committerGordon Bergling <gbe@FreeBSD.org>2025-12-13 09:54:04 +0000
commit3b6f9481a85600cf1f23a819c3afee30fcd4122f (patch)
treef0e4009e7db5566029e11eb3547510db7d094097
parentbcc735cb710fb74d1fb5f7be3d37701343c58ccd (diff)
mmc(4): Fix a typo in a device debug message
- s/reseting/resetting/ MFC after: 5 days
-rw-r--r--sys/cam/mmc/mmc_xpt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/cam/mmc/mmc_xpt.c b/sys/cam/mmc/mmc_xpt.c
index f5f66f5214a8..5c26ee30d36a 100644
--- a/sys/cam/mmc/mmc_xpt.c
+++ b/sys/cam/mmc/mmc_xpt.c
@@ -632,7 +632,7 @@ mmcprobe_start(struct cam_periph *periph, union ccb *start_ccb)
if (host_caps & MMC_CAP_SIGNALING_180)
softc->flags |= PROBE_FLAG_HOST_CAN_DO_18V;
uint32_t hv = mmc_highest_voltage(softc->host_ocr);
- CAM_DEBUG(start_ccb->ccb_h.path, CAM_DEBUG_PROBE, ("reseting the bus\n"));
+ CAM_DEBUG(start_ccb->ccb_h.path, CAM_DEBUG_PROBE, ("resetting the bus\n"));
init_standard_ccb(start_ccb, XPT_MMC_SET_TRAN_SETTINGS);
cts->ios.vdd = hv;
cts->ios.bus_mode = opendrain;