Module Name: src
Committed By: andvar
Date: Mon May 23 19:52:35 UTC 2022
Modified Files:
src/sys/arch/arm/footbridge: footbridge_io.c
src/sys/arch/arm/s3c2xx0: s3c2800_pci.c
src/sys/arch/cobalt/cobalt: machdep.c
src/sys/arch/evbarm/ifpga: ifpga_io.c
src/sys/arch/hp300/dev: rdreg.h
src/sys/arch/mac68k/mac68k: pramasm.s
src/sys/arch/netwinder/netwinder: netwinder_machdep.c
src/sys/dev/ic: aic79xx.c aic7xxx.c
src/usr.bin/pr: pr.c
Log Message:
s/boundries/boundaries/, s/itterate/iterate/ and few more typos.
To generate a diff of this commit:
cvs rdiff -u -r1.25 -r1.26 src/sys/arch/arm/footbridge/footbridge_io.c
cvs rdiff -u -r1.32 -r1.33 src/sys/arch/arm/s3c2xx0/s3c2800_pci.c
cvs rdiff -u -r1.122 -r1.123 src/sys/arch/cobalt/cobalt/machdep.c
cvs rdiff -u -r1.13 -r1.14 src/sys/arch/evbarm/ifpga/ifpga_io.c
cvs rdiff -u -r1.17 -r1.18 src/sys/arch/hp300/dev/rdreg.h
cvs rdiff -u -r1.9 -r1.10 src/sys/arch/mac68k/mac68k/pramasm.s
cvs rdiff -u -r1.91 -r1.92 \
src/sys/arch/netwinder/netwinder/netwinder_machdep.c
cvs rdiff -u -r1.67 -r1.68 src/sys/dev/ic/aic79xx.c
cvs rdiff -u -r1.145 -r1.146 src/sys/dev/ic/aic7xxx.c
cvs rdiff -u -r1.26 -r1.27 src/usr.bin/pr/pr.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/arm/footbridge/footbridge_io.c
diff -u src/sys/arch/arm/footbridge/footbridge_io.c:1.25 src/sys/arch/arm/footbridge/footbridge_io.c:1.26
--- src/sys/arch/arm/footbridge/footbridge_io.c:1.25 Fri Aug 13 11:40:43 2021
+++ src/sys/arch/arm/footbridge/footbridge_io.c Mon May 23 19:52:34 2022
@@ -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 @@ footbridge_mem_bs_map(void *t, bus_addr_
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);
Index: src/sys/arch/arm/s3c2xx0/s3c2800_pci.c
diff -u src/sys/arch/arm/s3c2xx0/s3c2800_pci.c:1.32 src/sys/arch/arm/s3c2xx0/s3c2800_pci.c:1.33
--- src/sys/arch/arm/s3c2xx0/s3c2800_pci.c:1.32 Sat Aug 7 16:18:45 2021
+++ src/sys/arch/arm/s3c2xx0/s3c2800_pci.c Mon May 23 19:52:34 2022
@@ -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 @@ sspci_bs_map(void *t, bus_addr_t bpa, bu
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);
Index: src/sys/arch/cobalt/cobalt/machdep.c
diff -u src/sys/arch/cobalt/cobalt/machdep.c:1.122 src/sys/arch/cobalt/cobalt/machdep.c:1.123
--- src/sys/arch/cobalt/cobalt/machdep.c:1.122 Wed Feb 6 21:42:46 2019
+++ src/sys/arch/cobalt/cobalt/machdep.c Mon May 23 19:52:34 2022
@@ -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 @@ decode_bootstring(void)
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 */
Index: src/sys/arch/evbarm/ifpga/ifpga_io.c
diff -u src/sys/arch/evbarm/ifpga/ifpga_io.c:1.13 src/sys/arch/evbarm/ifpga/ifpga_io.c:1.14
--- src/sys/arch/evbarm/ifpga/ifpga_io.c:1.13 Fri Mar 16 17:56:33 2018
+++ src/sys/arch/evbarm/ifpga/ifpga_io.c Mon May 23 19:52:34 2022
@@ -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 @@ ifpga_mem_bs_map(void *t, bus_addr_t bpa
return 0;
}
- /* Round the allocation to page boundries */
+ /* Round the allocation to page boundaries */
startpa = trunc_page(bpa);
endpa = round_page(bpa + size);
Index: src/sys/arch/hp300/dev/rdreg.h
diff -u src/sys/arch/hp300/dev/rdreg.h:1.17 src/sys/arch/hp300/dev/rdreg.h:1.18
--- src/sys/arch/hp300/dev/rdreg.h:1.17 Sun Jul 11 13:00:52 2021
+++ src/sys/arch/hp300/dev/rdreg.h Mon May 23 19:52:34 2022
@@ -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 @@ struct rd_clearcmd {
* 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)
Index: src/sys/arch/mac68k/mac68k/pramasm.s
diff -u src/sys/arch/mac68k/mac68k/pramasm.s:1.9 src/sys/arch/mac68k/mac68k/pramasm.s:1.10
--- src/sys/arch/mac68k/mac68k/pramasm.s:1.9 Sat Sep 7 19:06:29 2013
+++ src/sys/arch/mac68k/mac68k/pramasm.s Mon May 23 19:52:34 2022
@@ -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 @@ tagain:
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 ?
Index: src/sys/arch/netwinder/netwinder/netwinder_machdep.c
diff -u src/sys/arch/netwinder/netwinder/netwinder_machdep.c:1.91 src/sys/arch/netwinder/netwinder/netwinder_machdep.c:1.92
--- src/sys/arch/netwinder/netwinder/netwinder_machdep.c:1.91 Tue Aug 17 22:00:30 2021
+++ src/sys/arch/netwinder/netwinder/netwinder_machdep.c Mon May 23 19:52:34 2022
@@ -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 @@ initarm(void *arg)
#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 @@ nw_footbridge_mem_bs_map(void *t, bus_ad
{
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);
Index: src/sys/dev/ic/aic79xx.c
diff -u src/sys/dev/ic/aic79xx.c:1.67 src/sys/dev/ic/aic79xx.c:1.68
--- src/sys/dev/ic/aic79xx.c:1.67 Sun May 22 11:27:35 2022
+++ src/sys/dev/ic/aic79xx.c Mon May 23 19:52:35 2022
@@ -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 @@ static struct ahd_phase_table_entry ahd_
};
/*
- * 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;
Index: src/sys/dev/ic/aic7xxx.c
diff -u src/sys/dev/ic/aic7xxx.c:1.145 src/sys/dev/ic/aic7xxx.c:1.146
--- src/sys/dev/ic/aic7xxx.c:1.145 Mon Oct 25 07:45:01 2021
+++ src/sys/dev/ic/aic7xxx.c Mon May 23 19:52:35 2022
@@ -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 @@ struct ahc_hard_error_entry {
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 @@ static struct ahc_phase_table_entry ahc_
};
/*
- * 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;
Index: src/usr.bin/pr/pr.c
diff -u src/usr.bin/pr/pr.c:1.26 src/usr.bin/pr/pr.c:1.27
--- src/usr.bin/pr/pr.c:1.26 Fri Apr 8 10:17:55 2022
+++ src/usr.bin/pr/pr.c Mon May 23 19:52:35 2022
@@ -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 @@ __COPYRIGHT("@(#) Copyright (c) 1993\
#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 @@ mulfile(int argc, char *argv[])
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 @@ prhead(char *buf, const char *fname, int
* 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