svn commit: r210779 - in head/sys/cam: . scsi
Benedict Reuschling
bcr at FreeBSD.org
Mon Aug 2 18:06:49 UTC 2010
Author: bcr (doc committer)
Date: Mon Aug 2 18:06:49 2010
New Revision: 210779
URL: http://svn.freebsd.org/changeset/base/210779
Log:
Fix two (very common) occurrences of s/sytem/system in comments.
Approved by: mav
MFC after: 3 days
Modified:
head/sys/cam/cam.c
head/sys/cam/scsi/scsi_target.c
Modified: head/sys/cam/cam.c
==============================================================================
--- head/sys/cam/cam.c Mon Aug 2 17:40:25 2010 (r210778)
+++ head/sys/cam/cam.c Mon Aug 2 18:06:49 2010 (r210779)
@@ -59,7 +59,7 @@ const struct cam_status_entry cam_status
{ 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" },
Modified: head/sys/cam/scsi/scsi_target.c
==============================================================================
--- head/sys/cam/scsi/scsi_target.c Mon Aug 2 17:40:25 2010 (r210778)
+++ head/sys/cam/scsi/scsi_target.c Mon Aug 2 18:06:49 2010 (r210779)
@@ -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:
More information about the svn-src-all
mailing list