Source-Changes-HG archive

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

[src/trunk]: src/usr.bin/pr s/boundries/boundaries/, s/itterate/iterate/ and ...



details:   https://anonhg.NetBSD.org/src/rev/327be1a686d6
branches:  trunk
changeset: 366369:327be1a686d6
user:      andvar <andvar%NetBSD.org@localhost>
date:      Mon May 23 19:52:34 2022 +0000

description:
s/boundries/boundaries/, s/itterate/iterate/ and few more typos.

diffstat:

 sys/arch/arm/footbridge/footbridge_io.c          |   6 +++---
 sys/arch/arm/s3c2xx0/s3c2800_pci.c               |   6 +++---
 sys/arch/cobalt/cobalt/machdep.c                 |   6 +++---
 sys/arch/evbarm/ifpga/ifpga_io.c                 |   6 +++---
 sys/arch/hp300/dev/rdreg.h                       |   6 +++---
 sys/arch/mac68k/mac68k/pramasm.s                 |   4 ++--
 sys/arch/netwinder/netwinder/netwinder_machdep.c |   8 ++++----
 sys/dev/ic/aic79xx.c                             |   6 +++---
 sys/dev/ic/aic7xxx.c                             |  10 +++++-----
 usr.bin/pr/pr.c                                  |   8 ++++----
 10 files changed, 33 insertions(+), 33 deletions(-)

diffs (290 lines):

diff -r 3a9dc159a7df -r 327be1a686d6 sys/arch/arm/footbridge/footbridge_io.c
--- a/sys/arch/arm/footbridge/footbridge_io.c   Mon May 23 19:21:30 2022 +0000
+++ b/sys/arch/arm/footbridge/footbridge_io.c   Mon May 23 19:52:34 2022 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: footbridge_io.c,v 1.25 2021/08/13 11:40:43 skrll Exp $ */
+/*     $NetBSD: footbridge_io.c,v 1.26 2022/05/23 19:52:34 andvar Exp $        */
 
 /*
  * Copyright (c) 1997 Causality Limited
@@ -39,7 +39,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: footbridge_io.c,v 1.25 2021/08/13 11:40:43 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: footbridge_io.c,v 1.26 2022/05/23 19:52:34 andvar Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -185,7 +185,7 @@
        paddr_t startpa, endpa, pa;
        const struct pmap_devmap *pd;
 
-       /* Round the allocation to page boundries */
+       /* Round the allocation to page boundaries */
        startpa = trunc_page(bpa);
        endpa = round_page(bpa + size);
 
diff -r 3a9dc159a7df -r 327be1a686d6 sys/arch/arm/s3c2xx0/s3c2800_pci.c
--- a/sys/arch/arm/s3c2xx0/s3c2800_pci.c        Mon May 23 19:21:30 2022 +0000
+++ b/sys/arch/arm/s3c2xx0/s3c2800_pci.c        Mon May 23 19:52:34 2022 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: s3c2800_pci.c,v 1.32 2021/08/07 16:18:45 thorpej Exp $ */
+/*     $NetBSD: s3c2800_pci.c,v 1.33 2022/05/23 19:52:34 andvar Exp $  */
 
 /*
  * Copyright (c) 2002 Fujitsu Component Limited
@@ -100,7 +100,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: s3c2800_pci.c,v 1.32 2021/08/07 16:18:45 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: s3c2800_pci.c,v 1.33 2022/05/23 19:52:34 andvar Exp $");
 
 #include "opt_pci.h"
 #include "pci.h"
@@ -353,7 +353,7 @@
            t, bpa, size, flag);
 #endif
 
-       /* Round the allocation to page boundries */
+       /* Round the allocation to page boundaries */
        startpa = trunc_page(bpa);
        endpa = round_page(bpa + size);
 
diff -r 3a9dc159a7df -r 327be1a686d6 sys/arch/cobalt/cobalt/machdep.c
--- a/sys/arch/cobalt/cobalt/machdep.c  Mon May 23 19:21:30 2022 +0000
+++ b/sys/arch/cobalt/cobalt/machdep.c  Mon May 23 19:52:34 2022 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: machdep.c,v 1.122 2019/02/06 21:42:46 mrg Exp $        */
+/*     $NetBSD: machdep.c,v 1.123 2022/05/23 19:52:34 andvar Exp $     */
 
 /*-
  * Copyright (c) 2006 Izumi Tsutsui.  All rights reserved.
@@ -50,7 +50,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.122 2019/02/06 21:42:46 mrg Exp $");
+__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.123 2022/05/23 19:52:34 andvar Exp $");
 
 #include "opt_ddb.h"
 #include "opt_kgdb.h"
@@ -397,7 +397,7 @@
        char *equ;
        int i;
 
-       /* break apart bootstring on ' ' boundries and itterate */
+       /* break apart bootstring on ' ' boundaries and iterate */
        work = strtok_light(bootstring, ' ');
        while (work != NULL) {
                /* if starts with '-', we got options, walk its decode */
diff -r 3a9dc159a7df -r 327be1a686d6 sys/arch/evbarm/ifpga/ifpga_io.c
--- a/sys/arch/evbarm/ifpga/ifpga_io.c  Mon May 23 19:21:30 2022 +0000
+++ b/sys/arch/evbarm/ifpga/ifpga_io.c  Mon May 23 19:52:34 2022 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: ifpga_io.c,v 1.13 2018/03/16 17:56:33 ryo Exp $ */
+/*     $NetBSD: ifpga_io.c,v 1.14 2022/05/23 19:52:34 andvar Exp $ */
 
 /*
  * Copyright (c) 1997 Causality Limited
@@ -41,7 +41,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ifpga_io.c,v 1.13 2018/03/16 17:56:33 ryo Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ifpga_io.c,v 1.14 2022/05/23 19:52:34 andvar Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -258,7 +258,7 @@
                return 0;
        }
 
-       /* Round the allocation to page boundries */
+       /* Round the allocation to page boundaries */
        startpa = trunc_page(bpa);
        endpa = round_page(bpa + size);
 
diff -r 3a9dc159a7df -r 327be1a686d6 sys/arch/hp300/dev/rdreg.h
--- a/sys/arch/hp300/dev/rdreg.h        Mon May 23 19:21:30 2022 +0000
+++ b/sys/arch/hp300/dev/rdreg.h        Mon May 23 19:52:34 2022 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: rdreg.h,v 1.17 2021/07/11 13:00:52 tsutsui Exp $       */
+/*     $NetBSD: rdreg.h,v 1.18 2022/05/23 19:52:34 andvar Exp $        */
 
 /*
  * Copyright (c) 1988 University of Utah.
@@ -198,8 +198,8 @@
  * Several HP drives have an odd number of 256 byte sectors per track.
  * This makes it rather difficult to break them into 512 and 1024 byte blocks.
  * So...we just do like HPUX and don't bother to respect hardware track/head
- * boundries -- we just mold the disk so that we use the entire capacity.
- * HPUX also sometimes doesn't abide by cylinder boundries, we attempt to
+ * boundaries -- we just mold the disk so that we use the entire capacity.
+ * HPUX also sometimes doesn't abide by cylinder boundaries, we attempt to
  * whenever possible.
  *
  * DISK                REAL (256 BPS)          HPUX (1024 BPS)         BSD (512 BPS)
diff -r 3a9dc159a7df -r 327be1a686d6 sys/arch/mac68k/mac68k/pramasm.s
--- a/sys/arch/mac68k/mac68k/pramasm.s  Mon May 23 19:21:30 2022 +0000
+++ b/sys/arch/mac68k/mac68k/pramasm.s  Mon May 23 19:52:34 2022 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pramasm.s,v 1.9 2013/09/07 19:06:29 chs Exp $  */
+/*     $NetBSD: pramasm.s,v 1.10 2022/05/23 19:52:34 andvar Exp $      */
 
 /*
  * RTC toolkit version 1.08b, copyright 1995, erik vogan
@@ -338,7 +338,7 @@
        swap    %d1             | now we want to tweak the command
        addqw   #4,%d1          | increment our memory addr by 1 (this even 
                                | works if we want to dump across 32 byte
-                               | boundries for an extended command!!!
+                               | boundaries for an extended command!!!
                                | thanks to the oriw #$3880 above !!!)
        dbf     %d4,tagain      | repeat until we've got all we want
        movel   #0x00d50035,%d1 | remember that command to write the wp byte ?
diff -r 3a9dc159a7df -r 327be1a686d6 sys/arch/netwinder/netwinder/netwinder_machdep.c
--- a/sys/arch/netwinder/netwinder/netwinder_machdep.c  Mon May 23 19:21:30 2022 +0000
+++ b/sys/arch/netwinder/netwinder/netwinder_machdep.c  Mon May 23 19:52:34 2022 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: netwinder_machdep.c,v 1.91 2021/08/17 22:00:30 andvar Exp $    */
+/*     $NetBSD: netwinder_machdep.c,v 1.92 2022/05/23 19:52:34 andvar Exp $    */
 
 /*
  * Copyright (c) 1997,1998 Mark Brinicombe.
@@ -40,7 +40,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: netwinder_machdep.c,v 1.91 2021/08/17 22:00:30 andvar Exp $");
+__KERNEL_RCSID(0, "$NetBSD: netwinder_machdep.c,v 1.92 2022/05/23 19:52:34 andvar Exp $");
 
 #include "opt_ddb.h"
 
@@ -557,7 +557,7 @@
 #endif
 
        /*
-        * Now we start consturction of the L1 page table
+        * Now we start construction of the L1 page table
         * We start by mapping the L2 page tables into the L1.
         * This means that we can replace L1 mappings later on if necessary
         */
@@ -947,7 +947,7 @@
 {
        bus_addr_t startpa, endpa;
 
-       /* Round the allocation to page boundries */
+       /* Round the allocation to page boundaries */
        startpa = trunc_page(bpa);
        endpa = round_page(bpa + size);
 
diff -r 3a9dc159a7df -r 327be1a686d6 sys/dev/ic/aic79xx.c
--- a/sys/dev/ic/aic79xx.c      Mon May 23 19:21:30 2022 +0000
+++ b/sys/dev/ic/aic79xx.c      Mon May 23 19:52:34 2022 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: aic79xx.c,v 1.67 2022/05/22 11:27:35 andvar Exp $      */
+/*     $NetBSD: aic79xx.c,v 1.68 2022/05/23 19:52:35 andvar Exp $      */
 
 /*
  * Core routines and tables shareable across OS platforms.
@@ -49,7 +49,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: aic79xx.c,v 1.67 2022/05/22 11:27:35 andvar Exp $");
+__KERNEL_RCSID(0, "$NetBSD: aic79xx.c,v 1.68 2022/05/23 19:52:35 andvar Exp $");
 
 #include <dev/ic/aic79xx_osm.h>
 #include <dev/ic/aic79xx_inline.h>
@@ -104,7 +104,7 @@
 };
 
 /*
- * In most cases we only wish to itterate over real phases, so
+ * In most cases we only wish to iterate over real phases, so
  * exclude the last element from the count.
  */
 static const u_int num_phases = NUM_ELEMENTS(ahd_phase_table) - 1;
diff -r 3a9dc159a7df -r 327be1a686d6 sys/dev/ic/aic7xxx.c
--- a/sys/dev/ic/aic7xxx.c      Mon May 23 19:21:30 2022 +0000
+++ b/sys/dev/ic/aic7xxx.c      Mon May 23 19:52:34 2022 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: aic7xxx.c,v 1.145 2021/10/25 07:45:01 ryo Exp $        */
+/*     $NetBSD: aic7xxx.c,v 1.146 2022/05/23 19:52:35 andvar Exp $     */
 
 /*
  * Core routines and tables shareable across OS platforms.
@@ -39,7 +39,7 @@
  * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  * POSSIBILITY OF SUCH DAMAGES.
  *
- * $Id: aic7xxx.c,v 1.145 2021/10/25 07:45:01 ryo Exp $
+ * $Id: aic7xxx.c,v 1.146 2022/05/23 19:52:35 andvar Exp $
  *
  * //depot/aic7xxx/aic7xxx/aic7xxx.c#112 $
  *
@@ -50,7 +50,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: aic7xxx.c,v 1.145 2021/10/25 07:45:01 ryo Exp $");
+__KERNEL_RCSID(0, "$NetBSD: aic7xxx.c,v 1.146 2022/05/23 19:52:35 andvar Exp $");
 
 #include <dev/ic/aic7xxx_osm.h>
 #include <dev/ic/aic7xxx_inline.h>
@@ -88,7 +88,7 @@
 
 static struct ahc_hard_error_entry ahc_hard_errors[] = {
        { ILLHADDR,     "Illegal Host Access" },
-       { ILLSADDR,     "Illegal Sequencer Address referrenced" },
+       { ILLSADDR,     "Illegal Sequencer Address referenced" },
        { ILLOPCODE,    "Illegal Opcode in sequencer program" },
        { SQPARERR,     "Sequencer Parity Error" },
        { DPARERR,      "Data-path Parity Error" },
@@ -113,7 +113,7 @@
 };
 
 /*
- * In most cases we only wish to itterate over real phases, so
+ * In most cases we only wish to iterate over real phases, so
  * exclude the last element from the count.
  */
 static const u_int num_phases = NUM_ELEMENTS(ahc_phase_table) - 1;
diff -r 3a9dc159a7df -r 327be1a686d6 usr.bin/pr/pr.c
--- a/usr.bin/pr/pr.c   Mon May 23 19:21:30 2022 +0000
+++ b/usr.bin/pr/pr.c   Mon May 23 19:52:34 2022 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pr.c,v 1.26 2022/04/08 10:17:55 andvar Exp $   */
+/*     $NetBSD: pr.c,v 1.27 2022/05/23 19:52:35 andvar Exp $   */
 
 /*-
  * Copyright (c) 1991 Keith Muller.
@@ -45,7 +45,7 @@
 #if 0
 from: static char sccsid[] = "@(#)pr.c 8.1 (Berkeley) 6/6/93";
 #else
-__RCSID("$NetBSD: pr.c,v 1.26 2022/04/08 10:17:55 andvar Exp $");
+__RCSID("$NetBSD: pr.c,v 1.27 2022/05/23 19:52:35 andvar Exp $");
 #endif
 #endif /* not lint */
 
@@ -860,7 +860,7 @@
                goto out;
 
        /*
-        * calculate page boundries based on open file count
+        * calculate page boundaries based on open file count
         */
        clcnt = j;
        if (nmwd) {
@@ -1496,7 +1496,7 @@
         * restrictions. The specification for header line format
         * in the spec clearly does not limit length. No pr currently
         * restricts header length. However if we need to truncate in
-        * an reasonable way, adjust the length of the printf by
+        * a reasonable way, adjust the length of the printf by
         * changing HDFMT to allow a length max as an argument printf.
         * buf (which contains the offset spaces and time field could
         * also be trimmed



Home | Main Index | Thread Index | Old Index