The branch stable/15 has been updated by gbe: URL: https://cgit.FreeBSD.org/src/commit/?id=7cbb953d171bed9b53889ec97676b76e662a1990
commit 7cbb953d171bed9b53889ec97676b76e662a1990 Author: Gordon Bergling <[email protected]> AuthorDate: 2025-10-29 15:36:50 +0000 Commit: Gordon Bergling <[email protected]> CommitDate: 2025-11-08 18:58:49 +0000 ciss(4): Fix a typo in a debug messsage - s/unspported/unsupported/ (cherry picked from commit 84d75bb018e1800d610760191ff64c3eebcb46d7) --- sys/dev/ciss/ciss.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/dev/ciss/ciss.c b/sys/dev/ciss/ciss.c index d4ede91f6b35..dd3df631119a 100644 --- a/sys/dev/ciss/ciss.c +++ b/sys/dev/ciss/ciss.c @@ -3140,7 +3140,7 @@ ciss_cam_action(struct cam_sim *sim, union ccb *ccb) } default: /* we can't do this */ - debug(1, "unspported func_code = 0x%x", ccb->ccb_h.func_code); + debug(1, "unsupported func_code = 0x%x", ccb->ccb_h.func_code); ccb->ccb_h.status = CAM_REQ_INVALID; break; }
