git: d1e77e8fca60 - stable/13 - mpt(4): Fix two typos in debug statements
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 10 Nov 2022 08:02:10 UTC
The branch stable/13 has been updated by gbe (doc committer): URL: https://cgit.FreeBSD.org/src/commit/?id=d1e77e8fca604783004176d0ab5b8ae37d1f8af5 commit d1e77e8fca604783004176d0ab5b8ae37d1f8af5 Author: Gordon Bergling <gbe@FreeBSD.org> AuthorDate: 2022-06-04 18:41:15 +0000 Commit: Gordon Bergling <gbe@FreeBSD.org> CommitDate: 2022-11-10 08:02:02 +0000 mpt(4): Fix two typos in debug statements - s/Intermidiate/Intermediate/ Obtained from: NetBSD (cherry picked from commit 00b0158d2ca6f0405468c2338d823091963c18ed) --- sys/dev/mpt/mpt_debug.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/dev/mpt/mpt_debug.c b/sys/dev/mpt/mpt_debug.c index 96e3137498a9..5ed6493898b2 100644 --- a/sys/dev/mpt/mpt_debug.c +++ b/sys/dev/mpt/mpt_debug.c @@ -183,8 +183,8 @@ static const struct Error_Map IOC_SCSIStatus[] = { { SCSI_STATUS_CHECK_COND, "Check Condition" }, { SCSI_STATUS_COND_MET, "Check Condition Met" }, { SCSI_STATUS_BUSY, "Busy" }, -{ SCSI_STATUS_INTERMED, "Intermidiate Condition" }, -{ SCSI_STATUS_INTERMED_COND_MET, "Intermidiate Condition Met" }, +{ SCSI_STATUS_INTERMED, "Intermediate Condition" }, +{ SCSI_STATUS_INTERMED_COND_MET, "Intermediate Condition Met" }, { SCSI_STATUS_RESERV_CONFLICT, "Reservation Conflict" }, { SCSI_STATUS_CMD_TERMINATED, "Command Terminated" }, { SCSI_STATUS_QUEUE_FULL, "Queue Full" },