git: 353e9ce09f16 - stable/15 - mmc(4): Fix a typo in a device debug message
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 10 Jan 2026 13:10:24 UTC
The branch stable/15 has been updated by gbe:
URL: https://cgit.FreeBSD.org/src/commit/?id=353e9ce09f16aa0e4decdac84cff9d50298823aa
commit 353e9ce09f16aa0e4decdac84cff9d50298823aa
Author: Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2025-12-13 09:47:40 +0000
Commit: Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2026-01-10 13:09:17 +0000
mmc(4): Fix a typo in a device debug message
- s/reseting/resetting/
(cherry picked from commit 3b6f9481a85600cf1f23a819c3afee30fcd4122f)
---
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;