Source-Changes-HG archive

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

[src/trunk]: src/usr.sbin/sysinst Add missing double p and d for stopped and ...



details:   https://anonhg.NetBSD.org/src/rev/899406f4aa5d
branches:  trunk
changeset: 985873:899406f4aa5d
user:      andvar <andvar%NetBSD.org@localhost>
date:      Sat Sep 11 20:28:03 2021 +0000

description:
Add missing double p and d for stopped and overriden accordingly.
Fix few more typos along the way, mainly in copy-pasted comments.

diffstat:

 lib/libc/gen/randomid.c                  |   6 +++---
 lib/libc/include/namespace.h             |   4 ++--
 lib/libpuffs/null.c                      |   6 +++---
 sys/arch/acorn32/podulebus/podulebus.c   |   6 +++---
 sys/arch/arm/rockchip/rk_tsadc.c         |   6 +++---
 sys/arch/cesfic/dev/zs.c                 |   6 +++---
 sys/arch/cobalt/dev/zs.c                 |   6 +++---
 sys/arch/ews4800mips/dev/zs.c            |   6 +++---
 sys/arch/mac68k/dev/zs.c                 |  14 +++++++-------
 sys/arch/macppc/dev/zs.c                 |  10 +++++-----
 sys/arch/mipsco/obio/zs.c                |   6 +++---
 sys/arch/mvme68k/dev/zs.c                |   6 +++---
 sys/arch/news68k/dev/zs.c                |   6 +++---
 sys/arch/newsmips/dev/zs.c               |   6 +++---
 sys/arch/next68k/dev/zs.c                |   6 +++---
 sys/arch/powerpc/booke/e500_intr.c       |   6 +++---
 sys/arch/powerpc/include/booke/vmparam.h |   4 ++--
 sys/arch/powerpc/include/oea/vmparam.h   |   2 +-
 sys/arch/sgimips/dev/zs.c                |   6 +++---
 sys/arch/sparc/dev/sx.c                  |   6 +++---
 sys/arch/sparc/dev/zs.c                  |   6 +++---
 sys/arch/sparc64/dev/zs.c                |   6 +++---
 sys/arch/sun2/dev/zs.c                   |   6 +++---
 sys/arch/sun3/dev/zs.c                   |   6 +++---
 sys/arch/x68k/dev/zs.c                   |   6 +++---
 sys/conf/Makefile.kern.inc               |   6 +++---
 sys/dev/ic/dm9000.c                      |   4 ++--
 sys/dev/ic/dwc_gmac.c                    |   6 +++---
 sys/dev/ic/isp.c                         |   6 +++---
 sys/dev/ic/ispvar.h                      |   4 ++--
 sys/dev/mm.h                             |   4 ++--
 sys/dev/tc/zs_ioasic.c                   |   6 +++---
 tests/usr.bin/patch/t_patch.sh           |   4 ++--
 usr.bin/config/config.5                  |   4 ++--
 usr.bin/kdump/mksiginfos                 |   4 ++--
 usr.bin/tip/acu.c                        |   6 +++---
 usr.sbin/sysinst/README.md_defs          |   4 ++--
 usr.sbin/sysinst/partitions.c            |   4 ++--
 usr.sbin/sysinst/partitions.h            |   4 ++--
 39 files changed, 110 insertions(+), 110 deletions(-)

diffs (truncated from 992 to 300 lines):

diff -r fd16e9fb13cd -r 899406f4aa5d lib/libc/gen/randomid.c
--- a/lib/libc/gen/randomid.c   Sat Sep 11 20:05:33 2021 +0000
+++ b/lib/libc/gen/randomid.c   Sat Sep 11 20:28:03 2021 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: randomid.c,v 1.14 2019/12/27 09:25:57 msaitoh Exp $    */
+/*     $NetBSD: randomid.c,v 1.15 2021/09/11 20:28:03 andvar Exp $     */
 /*     $KAME: ip6_id.c,v 1.8 2003/09/06 13:41:06 itojun Exp $  */
 /*     $OpenBSD: ip_id.c,v 1.6 2002/03/15 18:19:52 millert Exp $       */
 
@@ -76,14 +76,14 @@
  * The transaction id is determined by:
  * id[n] = seed xor (g^X[n] mod n)
  *
- * Effectivly the id is restricted to the lower (bits - 1) bits, thus
+ * Effectively the id is restricted to the lower (bits - 1) bits, thus
  * yielding two different cycles by toggling the msb on and off.
  * This avoids reuse issues caused by reseeding.
  */
 
 #include <sys/cdefs.h>
 #if defined(LIBC_SCCS) && !defined(lint)
-__RCSID("$NetBSD: randomid.c,v 1.14 2019/12/27 09:25:57 msaitoh Exp $");
+__RCSID("$NetBSD: randomid.c,v 1.15 2021/09/11 20:28:03 andvar Exp $");
 #endif
 
 #include "namespace.h"
diff -r fd16e9fb13cd -r 899406f4aa5d lib/libc/include/namespace.h
--- a/lib/libc/include/namespace.h      Sat Sep 11 20:05:33 2021 +0000
+++ b/lib/libc/include/namespace.h      Sat Sep 11 20:28:03 2021 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: namespace.h,v 1.201 2021/07/04 16:18:50 rillig Exp $   */
+/*     $NetBSD: namespace.h,v 1.202 2021/09/11 20:28:03 andvar Exp $   */
 
 /*-
  * Copyright (c) 1997-2004 The NetBSD Foundation, Inc.
@@ -97,7 +97,7 @@
 
 /*
  * namespace protection for libc functions that are used internally
- * in libc and should be not overriden by applications. To do this,
+ * in libc and should be not overridden by applications. To do this,
  * this header renames them to a name that starts with an "_" so that
  * libc uses the "_" flavor internally (and this name is not part of
  * the application namespace), and then a weak alias is added to the
diff -r fd16e9fb13cd -r 899406f4aa5d lib/libpuffs/null.c
--- a/lib/libpuffs/null.c       Sat Sep 11 20:05:33 2021 +0000
+++ b/lib/libpuffs/null.c       Sat Sep 11 20:28:03 2021 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: null.c,v 1.35 2019/11/02 18:14:36 tnn Exp $    */
+/*     $NetBSD: null.c,v 1.36 2021/09/11 20:28:03 andvar Exp $ */
 
 /*
  * Copyright (c) 2007  Antti Kantee.  All Rights Reserved.
@@ -27,7 +27,7 @@
 
 #include <sys/cdefs.h>
 #if !defined(lint)
-__RCSID("$NetBSD: null.c,v 1.35 2019/11/02 18:14:36 tnn Exp $");
+__RCSID("$NetBSD: null.c,v 1.36 2021/09/11 20:28:03 andvar Exp $");
 #endif /* !lint */
 
 /*
@@ -159,7 +159,7 @@
        return 0;
 }
 
-/* This should be called first and overriden from the file system */
+/* This should be called first and overridden from the file system */
 void
 puffs_null_setops(struct puffs_ops *pops)
 {
diff -r fd16e9fb13cd -r 899406f4aa5d sys/arch/acorn32/podulebus/podulebus.c
--- a/sys/arch/acorn32/podulebus/podulebus.c    Sat Sep 11 20:05:33 2021 +0000
+++ b/sys/arch/acorn32/podulebus/podulebus.c    Sat Sep 11 20:28:03 2021 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: podulebus.c,v 1.32 2021/08/07 16:18:40 thorpej Exp $ */
+/* $NetBSD: podulebus.c,v 1.33 2021/09/11 20:28:03 andvar Exp $ */
 
 /*
  * Copyright (c) 1994-1996 Mark Brinicombe.
@@ -43,7 +43,7 @@
 
 #include <sys/param.h>
 
-__KERNEL_RCSID(0, "$NetBSD: podulebus.c,v 1.32 2021/08/07 16:18:40 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: podulebus.c,v 1.33 2021/09/11 20:28:03 andvar Exp $");
 
 #include <sys/systm.h>
 #include <sys/kernel.h>
@@ -484,7 +484,7 @@
                        /* Any old description is now wrong */
                        podules[loop].description[0] = 0;
                        if (value != 0xffff) {
-                               printf("podule%d: ID overriden man=%04x prod=%04x\n",
+                               printf("podule%d: ID overridden man=%04x prod=%04x\n",
                                    loop, podules[loop].manufacturer,
                                    podules[loop].product);
                                podules[loop].slottype = SLOT_POD;
diff -r fd16e9fb13cd -r 899406f4aa5d sys/arch/arm/rockchip/rk_tsadc.c
--- a/sys/arch/arm/rockchip/rk_tsadc.c  Sat Sep 11 20:05:33 2021 +0000
+++ b/sys/arch/arm/rockchip/rk_tsadc.c  Sat Sep 11 20:28:03 2021 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: rk_tsadc.c,v 1.13 2021/06/12 00:04:46 mrg Exp $        */
+/*     $NetBSD: rk_tsadc.c,v 1.14 2021/09/11 20:28:03 andvar Exp $     */
 
 /*
  * Copyright (c) 2019 Matthew R. Green
@@ -30,7 +30,7 @@
 
 #include <sys/cdefs.h>
 
-__KERNEL_RCSID(0, "$NetBSD: rk_tsadc.c,v 1.13 2021/06/12 00:04:46 mrg Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rk_tsadc.c,v 1.14 2021/09/11 20:28:03 andvar Exp $");
 
 /*
  * Driver for the TSADC temperature sensor monitor in RK3328 and RK3399.
@@ -247,7 +247,7 @@
           * pull out of here?
           * do something with hysteresis?  put in debounce?
           * 
-          * Note that tshut may be overriden by the board specific DT.
+          * Note that tshut may be overridden by the board specific DT.
           */
          .s_warn = 75000000,
          .s_tshut = 95000000,
diff -r fd16e9fb13cd -r 899406f4aa5d sys/arch/cesfic/dev/zs.c
--- a/sys/arch/cesfic/dev/zs.c  Sat Sep 11 20:05:33 2021 +0000
+++ b/sys/arch/cesfic/dev/zs.c  Sat Sep 11 20:28:03 2021 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: zs.c,v 1.23 2021/08/07 16:18:47 thorpej Exp $  */
+/*     $NetBSD: zs.c,v 1.24 2021/09/11 20:28:03 andvar Exp $   */
 
 /*-
  * Copyright (c) 1996 The NetBSD Foundation, Inc.
@@ -37,7 +37,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: zs.c,v 1.23 2021/08/07 16:18:47 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: zs.c,v 1.24 2021/09/11 20:28:03 andvar Exp $");
 
 #include "opt_ddb.h"
 
@@ -298,7 +298,7 @@
        /*
         * Output hardware flow control on the chip is horrendous:
         * if carrier detect drops, the receiver is disabled, and if
-        * CTS drops, the transmitter is stoped IN MID CHARACTER!
+        * CTS drops, the transmitter is stopped IN MID CHARACTER!
         * Therefore, NEVER set the HFC bit, and instead use the
         * status interrupt to detect CTS changes.
         */
diff -r fd16e9fb13cd -r 899406f4aa5d sys/arch/cobalt/dev/zs.c
--- a/sys/arch/cobalt/dev/zs.c  Sat Sep 11 20:05:33 2021 +0000
+++ b/sys/arch/cobalt/dev/zs.c  Sat Sep 11 20:28:03 2021 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: zs.c,v 1.6 2021/08/07 16:18:47 thorpej Exp $   */
+/*     $NetBSD: zs.c,v 1.7 2021/09/11 20:28:03 andvar Exp $    */
 
 /*-
  * Copyright (c) 1996 The NetBSD Foundation, Inc.
@@ -37,7 +37,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: zs.c,v 1.6 2021/08/07 16:18:47 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: zs.c,v 1.7 2021/09/11 20:28:03 andvar Exp $");
 
 #include "opt_ddb.h"
 
@@ -346,7 +346,7 @@
        /*
         * Output hardware flow control on the chip is horrendous:
         * if carrier detect drops, the receiver is disabled, and if
-        * CTS drops, the transmitter is stoped IN MID CHARACTER!
+        * CTS drops, the transmitter is stopped IN MID CHARACTER!
         * Therefore, NEVER set the HFC bit, and instead use the
         * status interrupt to detect CTS changes.
         */
diff -r fd16e9fb13cd -r 899406f4aa5d sys/arch/ews4800mips/dev/zs.c
--- a/sys/arch/ews4800mips/dev/zs.c     Sat Sep 11 20:05:33 2021 +0000
+++ b/sys/arch/ews4800mips/dev/zs.c     Sat Sep 11 20:28:03 2021 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: zs.c,v 1.5 2008/04/28 20:23:18 martin Exp $    */
+/*     $NetBSD: zs.c,v 1.6 2021/09/11 20:28:03 andvar Exp $    */
 
 /*-
  * Copyright (c) 1996, 2005 The NetBSD Foundation, Inc.
@@ -37,7 +37,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: zs.c,v 1.5 2008/04/28 20:23:18 martin Exp $");
+__KERNEL_RCSID(0, "$NetBSD: zs.c,v 1.6 2021/09/11 20:28:03 andvar Exp $");
 
 #include "opt_ddb.h"
 
@@ -147,7 +147,7 @@
        /*
         * Output hardware flow control on the chip is horrendous:
         * if carrier detect drops, the receiver is disabled, and if
-        * CTS drops, the transmitter is stoped IN MID CHARACTER!
+        * CTS drops, the transmitter is stopped IN MID CHARACTER!
         * Therefore, NEVER set the HFC bit, and instead use the
         * status interrupt to detect CTS changes.
         */
diff -r fd16e9fb13cd -r 899406f4aa5d sys/arch/mac68k/dev/zs.c
--- a/sys/arch/mac68k/dev/zs.c  Sat Sep 11 20:05:33 2021 +0000
+++ b/sys/arch/mac68k/dev/zs.c  Sat Sep 11 20:28:03 2021 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: zs.c,v 1.60 2021/08/07 16:18:57 thorpej Exp $  */
+/*     $NetBSD: zs.c,v 1.61 2021/09/11 20:28:04 andvar Exp $   */
 
 /*
  * Copyright (c) 1996-1998 Bill Studenmund
@@ -49,7 +49,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: zs.c,v 1.60 2021/08/07 16:18:57 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: zs.c,v 1.61 2021/09/11 20:28:04 andvar Exp $");
 
 #include "opt_ddb.h"
 #include "opt_mac68k.h"
@@ -514,7 +514,7 @@
         * Step through all the sources and see which one matches
         * the best. A source has to match BETTER than tol to be chosen.
         * Thus if two sources give the same error, the first one will be
-        * chosen. Also, allow for the possability that one source might run
+        * chosen. Also, allow for the possibility that one source might run
         * both the BRG and the direct divider (i.e. RTxC).
         */
        for (i=0; i < xcs->cs_clock_count; i++) {
@@ -645,7 +645,7 @@
        /*
         * Make sure we don't enable hfc on a signal line we're ignoring.
         * As we enable CTS interrupts only if we have CRTSCTS or CDTRCTS,
-        * this code also effectivly turns off ZSWR15_CTS_IE.
+        * this code also effectively turns off ZSWR15_CTS_IE.
         *
         * Also, disable DCD interrupts if we've been told to ignore
         * the DCD pin. Happens on mac68k because the input line for
@@ -676,7 +676,7 @@
        /*
         * Output hardware flow control on the chip is horrendous:
         * if carrier detect drops, the receiver is disabled, and if
-        * CTS drops, the transmitter is stoped IN MID CHARACTER!
+        * CTS drops, the transmitter is stopped IN MID CHARACTER!
         * Therefore, NEVER set the HFC bit, and instead use the
         * status interrupt to detect CTS changes.
         */
@@ -806,7 +806,7 @@
  */
 
 /*
- * This code modled after the zs_setparam routine in zskgdb
+ * This code modeled after the zs_setparam routine in zskgdb
  * It sets the console unit to a known state so we can output
  * correctly.
  */
@@ -907,7 +907,7 @@
         * chip for console I/O, we just set up the internal addresses for it.
         *
         * Now turn off interrupts for the chip. Note: using sccA to get at
-        * the chip is the only vestage of the NetBSD 1.0 ser driver. :-)
+        * the chip is the only vestige of the NetBSD 1.0 ser driver. :-)
         */
        unit = sccA[2];                 /* reset reg. access */
        unit = sccA[0];
diff -r fd16e9fb13cd -r 899406f4aa5d sys/arch/macppc/dev/zs.c
--- a/sys/arch/macppc/dev/zs.c  Sat Sep 11 20:05:33 2021 +0000
+++ b/sys/arch/macppc/dev/zs.c  Sat Sep 11 20:28:03 2021 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: zs.c,v 1.53 2021/08/07 16:18:58 thorpej Exp $  */
+/*     $NetBSD: zs.c,v 1.54 2021/09/11 20:28:04 andvar Exp $   */
 
 /*
  * Copyright (c) 1996, 1998 Bill Studenmund
@@ -49,7 +49,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: zs.c,v 1.53 2021/08/07 16:18:58 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: zs.c,v 1.54 2021/09/11 20:28:04 andvar Exp $");
 
 #include "opt_ddb.h"
 #include "opt_kgdb.h"
@@ -554,7 +554,7 @@
         * Step through all the sources and see which one matches
         * the best. A source has to match BETTER than tol to be chosen.
         * Thus if two sources give the same error, the first one will be
-        * chosen. Also, allow for the possability that one source might run
+        * chosen. Also, allow for the possibility that one source might run
         * both the BRG and the direct divider (i.e. RTxC).
         */
        for (i = 0; i < xcs->cs_clock_count; i++) {
@@ -685,7 +685,7 @@
        /*
         * Make sure we don't enable hfc on a signal line we're ignoring.
         * As we enable CTS interrupts only if we have CRTSCTS or CDTRCTS,



Home | Main Index | Thread Index | Old Index