The branch main has been updated by gbe: URL: https://cgit.FreeBSD.org/src/commit/?id=3b6f9481a85600cf1f23a819c3afee30fcd4122f
commit 3b6f9481a85600cf1f23a819c3afee30fcd4122f Author: Gordon Bergling <[email protected]> AuthorDate: 2025-12-13 09:47:40 +0000 Commit: Gordon Bergling <[email protected]> CommitDate: 2025-12-13 09:54:04 +0000 mmc(4): Fix a typo in a device debug message - s/reseting/resetting/ MFC after: 5 days --- sys/cam/mmc/mmc_xpt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;
