diff --git a/sys/cam/cam.c b/sys/cam/cam.c index 88271b0684b..452c9c973d8 100644 --- a/sys/cam/cam.c +++ b/sys/cam/cam.c @@ -59,7 +59,7 @@ const struct cam_status_entry cam_status_table[] = { { CAM_REQ_ABORTED, "CCB request aborted by the host" }, { CAM_UA_ABORT, "Unable to abort CCB request" }, { CAM_REQ_CMP_ERR, "CCB request completed with an error" }, - { CAM_BUSY, "CAM subsytem is busy" }, + { CAM_BUSY, "CAM subsystem is busy" }, { CAM_REQ_INVALID, "CCB request was invalid" }, { CAM_PATH_INVALID, "Supplied Path ID is invalid" }, { CAM_DEV_NOT_THERE, "Device Not Present" }, diff --git a/sys/cam/scsi/scsi_target.c b/sys/cam/scsi/scsi_target.c index de2ef7f177a..e16186abab7 100644 --- a/sys/cam/scsi/scsi_target.c +++ b/sys/cam/scsi/scsi_target.c @@ -1174,7 +1174,7 @@ targcamstatus(cam_status status) return (EINVAL); case CAM_RESRC_UNAVAIL: /* Resource Unavailable */ return (ENOMEM); - case CAM_BUSY: /* CAM subsytem is busy */ + case CAM_BUSY: /* CAM subsystem is busy */ case CAM_UA_ABORT: /* Unable to abort CCB request */ return (EBUSY); default: