Module Name: src
Committed By: andvar
Date: Thu Aug 17 14:19:50 UTC 2023
Modified Files:
src/sys/dev/ic: ciss.c
src/sys/rump/include/machine: intr.h
Log Message:
fix typos in comments.
To generate a diff of this commit:
cvs rdiff -u -r1.54 -r1.55 src/sys/dev/ic/ciss.c
cvs rdiff -u -r1.22 -r1.23 src/sys/rump/include/machine/intr.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/dev/ic/ciss.c
diff -u src/sys/dev/ic/ciss.c:1.54 src/sys/dev/ic/ciss.c:1.55
--- src/sys/dev/ic/ciss.c:1.54 Sun May 29 10:43:46 2022
+++ src/sys/dev/ic/ciss.c Thu Aug 17 14:19:50 2023
@@ -1,4 +1,4 @@
-/* $NetBSD: ciss.c,v 1.54 2022/05/29 10:43:46 rin Exp $ */
+/* $NetBSD: ciss.c,v 1.55 2023/08/17 14:19:50 andvar Exp $ */
/* $OpenBSD: ciss.c,v 1.68 2013/05/30 16:15:02 deraadt Exp $ */
/*
@@ -19,7 +19,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ciss.c,v 1.54 2022/05/29 10:43:46 rin Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ciss.c,v 1.55 2023/08/17 14:19:50 andvar Exp $");
#include "bio.h"
@@ -665,7 +665,7 @@ ciss_wait(struct ciss_softc *sc, struct
}
/*
- * submit a command and optionally wait for completition.
+ * submit a command and optionally wait for completion.
* wait arg abuses XS_CTL_POLL|XS_CTL_NOSLEEP flags to request
* to wait (XS_CTL_POLL) and to allow tsleep() (!XS_CTL_NOSLEEP)
* instead of busy loop waiting
@@ -1233,7 +1233,7 @@ ciss_scsi_cmd(struct scsipi_channel *cha
case ADAPTER_REQ_SET_XFER_MODE:
/*
* We can't change the transfer mode, but at least let
- * scsipi know what the adapter has negociated.
+ * scsipi know what the adapter has negotiated.
*/
xm = (struct scsipi_xfer_mode *)arg;
xm->xm_mode |= PERIPH_CAP_TQING;
@@ -1533,7 +1533,7 @@ ciss_ioctl_vol(struct ciss_softc *sc, st
bv->bv_size = blks * (u_quad_t)le16toh(ldid->blksize);
bv->bv_level = ciss_level[ldid->type];
/*
- * XXX Should only return bv_nodisk for logigal volume that we've associated
+ * XXX Should only return bv_nodisk for logical volume that we've associated
* the physical drives to: either the 1st degraded, rebuilding, or failed
* volume else volume 0?
*/
Index: src/sys/rump/include/machine/intr.h
diff -u src/sys/rump/include/machine/intr.h:1.22 src/sys/rump/include/machine/intr.h:1.23
--- src/sys/rump/include/machine/intr.h:1.22 Thu Apr 19 21:50:10 2018
+++ src/sys/rump/include/machine/intr.h Thu Aug 17 14:19:49 2023
@@ -1,4 +1,4 @@
-/* $NetBSD: intr.h,v 1.22 2018/04/19 21:50:10 christos Exp $ */
+/* $NetBSD: intr.h,v 1.23 2023/08/17 14:19:49 andvar Exp $ */
/*
* Copyright (c) 2009, 2010 Antti Kantee. All Rights Reserved.
@@ -57,7 +57,7 @@ makeiplcookie(ipl_t ipl)
#define spl0() ((void)0)
/*
- * IPL_* does not mean anything to a run-to-completition rump kernel,
+ * IPL_* does not mean anything to a run-to-completion rump kernel,
* but we sometimes assert a "not higher than" condition, so we assign
* different values (following spl(9)).
*/