Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[.joined/src/trunk]: .joined/src/sys/dev/ic fix typos in comments, mainly bas...



details:   https://anonhg.NetBSD.org/.joined/src/rev/b2fd609803cd
branches:  trunk
changeset: 359387:b2fd609803cd
user:      andvar <andvar%NetBSD.org@localhost>
date:      Sat Jan 01 21:07:13 2022 +0000

description:
fix typos in comments, mainly basicly -> basically.

diffstat:

 sys/arch/acorn32/podulebus/sbicvar.h   |  4 ++--
 sys/arch/amiga/dev/sbicvar.h           |  4 ++--
 sys/arch/amiga/dev/siopvar.h           |  4 ++--
 sys/arch/ia64/ia64/vm_machdep.c        |  4 ++--
 sys/arch/mvme68k/dev/sbicvar.h         |  4 ++--
 sys/arch/usermode/target/arm/cpu_arm.c |  6 +++---
 sys/arch/usermode/usermode/machdep.c   |  6 +++---
 sys/arch/x68k/dev/mhavar.h             |  4 ++--
 sys/dev/ic/aic6360.c                   |  8 ++++----
 sys/dev/ic/aic6360var.h                |  4 ++--
 sys/dev/ic/mb89352.c                   |  6 +++---
 sys/dev/ic/mb89352var.h                |  4 ++--
 sys/dev/ic/ncr53c9xvar.h               |  4 ++--
 sys/dev/ic/osiopvar.h                  |  4 ++--
 14 files changed, 33 insertions(+), 33 deletions(-)

diffs (294 lines):

diff -r 6b5284efb36b -r b2fd609803cd sys/arch/acorn32/podulebus/sbicvar.h
--- a/sys/arch/acorn32/podulebus/sbicvar.h      Sat Jan 01 21:04:15 2022 +0000
+++ b/sys/arch/acorn32/podulebus/sbicvar.h      Sat Jan 01 21:07:13 2022 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: sbicvar.h,v 1.6 2012/10/27 17:17:24 chs Exp $ */
+/* $NetBSD: sbicvar.h,v 1.7 2022/01/01 21:07:13 andvar Exp $ */
 
 /*
  * Copyright (c) 1990 The Regents of the University of California.
@@ -42,7 +42,7 @@
 /*
  * ACB. Holds additional information for each SCSI command Comments: We
  * need a separate scsi command block because we may need to overwrite it
- * with a request sense command.  Basicly, we refrain from fiddling with
+ * with a request sense command.  Basically, we refrain from fiddling with
  * the scsi_xfer struct (except do the expected updating of return values).
  * We'll generally update: xs->{flags,resid,error,sense,status} and
  * occasionally xs->retries.
diff -r 6b5284efb36b -r b2fd609803cd sys/arch/amiga/dev/sbicvar.h
--- a/sys/arch/amiga/dev/sbicvar.h      Sat Jan 01 21:04:15 2022 +0000
+++ b/sys/arch/amiga/dev/sbicvar.h      Sat Jan 01 21:07:13 2022 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: sbicvar.h,v 1.25 2019/12/27 09:41:49 msaitoh Exp $     */
+/*     $NetBSD: sbicvar.h,v 1.26 2022/01/01 21:07:13 andvar Exp $      */
 
 /*
  * Copyright (c) 1990 The Regents of the University of California.
@@ -54,7 +54,7 @@
 /*
  * ACB. Holds additional information for each SCSI command Comments: We
  * need a separate scsi command block because we may need to overwrite it
- * with a request sense command.  Basicly, we refrain from fiddling with
+ * with a request sense command.  Basically, we refrain from fiddling with
  * the scsipi_xfer struct (except do the expected updating of return values).
  * We'll generally update: xs->{flags,resid,error,sense,status} and
  * occasionally xs->retries.
diff -r 6b5284efb36b -r b2fd609803cd sys/arch/amiga/dev/siopvar.h
--- a/sys/arch/amiga/dev/siopvar.h      Sat Jan 01 21:04:15 2022 +0000
+++ b/sys/arch/amiga/dev/siopvar.h      Sat Jan 01 21:07:13 2022 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: siopvar.h,v 1.27 2012/10/27 17:17:31 chs Exp $ */
+/*     $NetBSD: siopvar.h,v 1.28 2022/01/01 21:07:13 andvar Exp $      */
 
 /*
  * Copyright (c) 1990 The Regents of the University of California.
@@ -72,7 +72,7 @@
 /*
  * ACB. Holds additional information for each SCSI command Comments: We
  * need a separate scsi command block because we may need to overwrite it
- * with a request sense command.  Basicly, we refrain from fiddling with
+ * with a request sense command.  Basically, we refrain from fiddling with
  * the scsi_xfer struct (except do the expected updating of return values).
  * We'll generally update: xs->{flags,resid,error,sense,status} and
  * occasionally xs->retries.
diff -r 6b5284efb36b -r b2fd609803cd sys/arch/ia64/ia64/vm_machdep.c
--- a/sys/arch/ia64/ia64/vm_machdep.c   Sat Jan 01 21:04:15 2022 +0000
+++ b/sys/arch/ia64/ia64/vm_machdep.c   Sat Jan 01 21:07:13 2022 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: vm_machdep.c,v 1.16 2019/01/18 18:03:06 scole Exp $    */
+/*     $NetBSD: vm_machdep.c,v 1.17 2022/01/01 21:07:14 andvar Exp $   */
 
 /*
  * Copyright (c) 2006 The NetBSD Foundation, Inc.
@@ -145,7 +145,7 @@
        }
 
        /*
-        * create the child's kernel stack and backing store. We basicly
+        * create the child's kernel stack and backing store. We basically
         * create an image of the parent's stack and backing store and
         * adjust where necessary.
         */
diff -r 6b5284efb36b -r b2fd609803cd sys/arch/mvme68k/dev/sbicvar.h
--- a/sys/arch/mvme68k/dev/sbicvar.h    Sat Jan 01 21:04:15 2022 +0000
+++ b/sys/arch/mvme68k/dev/sbicvar.h    Sat Jan 01 21:07:13 2022 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: sbicvar.h,v 1.16 2021/07/24 21:31:34 andvar Exp $      */
+/*     $NetBSD: sbicvar.h,v 1.17 2022/01/01 21:07:14 andvar Exp $      */
 
 /*
  * Copyright (c) 1990 The Regents of the University of California.
@@ -50,7 +50,7 @@
 /*
  * ACB. Holds additional information for each SCSI command Comments: We
  * need a separate scsi command block because we may need to overwrite it
- * with a request sense command.  Basicly, we refrain from fiddling with
+ * with a request sense command.  Basically, we refrain from fiddling with
  * the scsi_xfer struct (except do the expected updating of return values).
  * We'll generally update: xs->{flags,resid,error,sense,status} and
  * occasionally xs->retries.
diff -r 6b5284efb36b -r b2fd609803cd sys/arch/usermode/target/arm/cpu_arm.c
--- a/sys/arch/usermode/target/arm/cpu_arm.c    Sat Jan 01 21:04:15 2022 +0000
+++ b/sys/arch/usermode/target/arm/cpu_arm.c    Sat Jan 01 21:07:13 2022 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: cpu_arm.c,v 1.2 2013/11/11 13:52:04 jmcneill Exp $ */
+/* $NetBSD: cpu_arm.c,v 1.3 2022/01/01 21:07:14 andvar Exp $ */
 
 /*-
  * Copyright (c) 2011 Reinoud Zandijk <reinoud%netbsd.org@localhost>
@@ -29,12 +29,12 @@
 
 /*
  * Note that this machdep.c uses the `dummy' mcontext_t defined for usermode.
- * This is basicly a blob of PAGE_SIZE big. We might want to switch over to
+ * This is basically a blob of PAGE_SIZE big. We might want to switch over to
  * non-generic mcontext_t's one day, but will this break non-NetBSD hosts?
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: cpu_arm.c,v 1.2 2013/11/11 13:52:04 jmcneill Exp $");
+__KERNEL_RCSID(0, "$NetBSD: cpu_arm.c,v 1.3 2022/01/01 21:07:14 andvar Exp $");
 
 #include <sys/types.h>
 #include <sys/systm.h>
diff -r 6b5284efb36b -r b2fd609803cd sys/arch/usermode/usermode/machdep.c
--- a/sys/arch/usermode/usermode/machdep.c      Sat Jan 01 21:04:15 2022 +0000
+++ b/sys/arch/usermode/usermode/machdep.c      Sat Jan 01 21:07:13 2022 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: machdep.c,v 1.57 2018/08/01 09:44:31 reinoud Exp $ */
+/* $NetBSD: machdep.c,v 1.58 2022/01/01 21:07:14 andvar Exp $ */
 
 /*-
  * Copyright (c) 2011 Reinoud Zandijk <reinoud%netbsd.org@localhost>
@@ -29,7 +29,7 @@
 
 /*
  * Note that this machdep.c uses the `dummy' mcontext_t defined for usermode.
- * This is basicly a blob of PAGE_SIZE big. We might want to switch over to
+ * This is basically a blob of PAGE_SIZE big. We might want to switch over to
  * non-generic mcontext_t's one day, but will this break non-NetBSD hosts?
  */
 
@@ -37,7 +37,7 @@
 #include "opt_memsize.h"
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.57 2018/08/01 09:44:31 reinoud Exp $");
+__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.58 2022/01/01 21:07:14 andvar Exp $");
 
 #include <sys/types.h>
 #include <sys/systm.h>
diff -r 6b5284efb36b -r b2fd609803cd sys/arch/x68k/dev/mhavar.h
--- a/sys/arch/x68k/dev/mhavar.h        Sat Jan 01 21:04:15 2022 +0000
+++ b/sys/arch/x68k/dev/mhavar.h        Sat Jan 01 21:07:13 2022 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: mhavar.h,v 1.10 2012/07/29 00:08:19 matt Exp $ */
+/*     $NetBSD: mhavar.h,v 1.11 2022/01/01 21:07:14 andvar Exp $       */
 
 /*
  * Copyright (c) 1994 Peter Galbavy.  All rights reserved.
@@ -32,7 +32,7 @@
 /*
  * ACB. Holds additional information for each SCSI command Comments: We
  * need a separate scsi command block because we may need to overwrite it
- * with a request sense command.  Basicly, we refrain from fiddling with
+ * with a request sense command.  Basically, we refrain from fiddling with
  * the scsi_xfer struct (except do the expected updating of return values).
  * We'll generally update: xs->{flags,resid,error,sense,status} and
  * occasionally xs->retries.
diff -r 6b5284efb36b -r b2fd609803cd sys/dev/ic/aic6360.c
--- a/sys/dev/ic/aic6360.c      Sat Jan 01 21:04:15 2022 +0000
+++ b/sys/dev/ic/aic6360.c      Sat Jan 01 21:07:13 2022 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: aic6360.c,v 1.104 2021/08/07 16:19:12 thorpej Exp $    */
+/*     $NetBSD: aic6360.c,v 1.105 2022/01/01 21:07:14 andvar Exp $     */
 
 /*
  * Copyright (c) 1994, 1995, 1996 Charles M. Hannum.  All rights reserved.
@@ -58,7 +58,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: aic6360.c,v 1.104 2021/08/07 16:19:12 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: aic6360.c,v 1.105 2022/01/01 21:07:14 andvar Exp $");
 
 #include "opt_ddb.h"
 
@@ -67,7 +67,7 @@
  */
 
 /* Use doubleword transfers to/from SCSI chip.  Note: This requires
- * motherboard support.  Basicly, some motherboard chipsets are able to
+ * motherboard support.  Basically, some motherboard chipsets are able to
  * split a 32 bit I/O operation into two 16 bit I/O operations,
  * transparently to the processor.  This speeds up some things, notably long
  * data transfers.
@@ -1427,7 +1427,7 @@
  * Precondition: The SCSI bus should be in the DOUT phase, with REQ asserted
  * and ACK deasserted (i.e. waiting for a data byte)
  * This new revision has been optimized (I tried) to make the common case fast,
- * and the rarer cases (as a result) somewhat more comlex
+ * and the rarer cases (as a result) somewhat more complex
  */
 static int
 aic_dataout_pio(struct aic_softc *sc, u_char *p, int n)
diff -r 6b5284efb36b -r b2fd609803cd sys/dev/ic/aic6360var.h
--- a/sys/dev/ic/aic6360var.h   Sat Jan 01 21:04:15 2022 +0000
+++ b/sys/dev/ic/aic6360var.h   Sat Jan 01 21:07:13 2022 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: aic6360var.h,v 1.16 2009/09/22 13:18:28 tsutsui Exp $  */
+/*     $NetBSD: aic6360var.h,v 1.17 2022/01/01 21:07:14 andvar Exp $   */
 
 /*
  * Copyright (c) 1994, 1995, 1996 Charles M. Hannum.  All rights reserved.
@@ -66,7 +66,7 @@
 /*
  * ACB. Holds additional information for each SCSI command Comments: We
  * need a separate scsi command block because we may need to overwrite it
- * with a request sense command.  Basicly, we refrain from fiddling with
+ * with a request sense command.  Basically, we refrain from fiddling with
  * the scsipi_xfer struct (except do the expected updating of return values).
  * We'll generally update: xs->{flags,resid,error,sense,status} and
  * occasionally xs->retries.
diff -r 6b5284efb36b -r b2fd609803cd sys/dev/ic/mb89352.c
--- a/sys/dev/ic/mb89352.c      Sat Jan 01 21:04:15 2022 +0000
+++ b/sys/dev/ic/mb89352.c      Sat Jan 01 21:07:13 2022 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: mb89352.c,v 1.60 2021/08/07 16:19:12 thorpej Exp $     */
+/*     $NetBSD: mb89352.c,v 1.61 2022/01/01 21:07:14 andvar Exp $      */
 /*     NecBSD: mb89352.c,v 1.4 1998/03/14 07:31:20 kmatsuda Exp        */
 
 /*-
@@ -77,7 +77,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: mb89352.c,v 1.60 2021/08/07 16:19:12 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: mb89352.c,v 1.61 2022/01/01 21:07:14 andvar Exp $");
 
 #ifdef DDB
 #define        integrate
@@ -1441,7 +1441,7 @@
  * and ACK deasserted (i.e. waiting for a data byte)
  *
  * This new revision has been optimized (I tried) to make the common case fast,
- * and the rarer cases (as a result) somewhat more comlex
+ * and the rarer cases (as a result) somewhat more complex
  */
 int
 spc_dataout_pio(struct spc_softc *sc, uint8_t *p, int n)
diff -r 6b5284efb36b -r b2fd609803cd sys/dev/ic/mb89352var.h
--- a/sys/dev/ic/mb89352var.h   Sat Jan 01 21:04:15 2022 +0000
+++ b/sys/dev/ic/mb89352var.h   Sat Jan 01 21:07:13 2022 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: mb89352var.h,v 1.15 2009/11/12 20:15:02 dyoung Exp $   */
+/*     $NetBSD: mb89352var.h,v 1.16 2022/01/01 21:07:14 andvar Exp $   */
 /*     NecBSD: mb89352var.h,v 1.4 1998/03/14 07:31:22 kmatsuda Exp     */
 
 /*-
@@ -68,7 +68,7 @@
 /*
  * ACB. Holds additional information for each SCSI command Comments: We
  * need a separate scsi command block because we may need to overwrite it
- * with a request sense command.  Basicly, we refrain from fiddling with
+ * with a request sense command.  Basically, we refrain from fiddling with
  * the scsi_xfer struct (except do the expected updating of return values).
  * We'll generally update: xs->{flags,resid,error,sense,status} and
  * occasionally xs->retries.
diff -r 6b5284efb36b -r b2fd609803cd sys/dev/ic/ncr53c9xvar.h
--- a/sys/dev/ic/ncr53c9xvar.h  Sat Jan 01 21:04:15 2022 +0000
+++ b/sys/dev/ic/ncr53c9xvar.h  Sat Jan 01 21:07:13 2022 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: ncr53c9xvar.h,v 1.56 2014/03/25 16:19:13 christos Exp $        */
+/*     $NetBSD: ncr53c9xvar.h,v 1.57 2022/01/01 21:07:14 andvar Exp $  */
 
 /*-
  * Copyright (c) 1997 The NetBSD Foundation, Inc.
@@ -95,7 +95,7 @@
 /*
  * ECB. Holds additional information for each SCSI command Comments: We
  * need a separate scsi command block because we may need to overwrite it
- * with a request sense command.  Basicly, we refrain from fiddling with
+ * with a request sense command.  Basically, we refrain from fiddling with
  * the scsipi_xfer struct (except do the expected updating of return values).
  * We'll generally update: xs->{flags,resid,error,sense,status} and
  * occasionally xs->retries.
diff -r 6b5284efb36b -r b2fd609803cd sys/dev/ic/osiopvar.h
--- a/sys/dev/ic/osiopvar.h     Sat Jan 01 21:04:15 2022 +0000
+++ b/sys/dev/ic/osiopvar.h     Sat Jan 01 21:07:13 2022 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: osiopvar.h,v 1.13 2008/05/14 13:29:28 tsutsui Exp $    */
+/*     $NetBSD: osiopvar.h,v 1.14 2022/01/01 21:07:14 andvar Exp $     */
 
 /*-
  * Copyright (c) 2001 Izumi Tsutsui.  All rights reserved.
@@ -129,7 +129,7 @@
 
 /*
  * ACB. Holds additional information for each SCSI command Comments:
- * Basicly, we refrain from fiddling with the scsi_xfer struct
+ * Basically, we refrain from fiddling with the scsi_xfer struct
  * (except do the expected updating of return values).
  * We'll generally update: xs->{flags,resid,error,status} and
  * occasionally xs->retries.



Home | Main Index | Thread Index | Old Index