s/boundries/boundaries/, s/itterate/iterate/ and few more typos.
This commit is contained in:
parent
a657a7c44e
commit
9fa72d0995
|
@ -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_t bpa, bus_size_t size, int flags,
|
|||
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);
|
||||
|
||||
|
|
|
@ -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, bus_size_t size, int flag,
|
|||
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);
|
||||
|
||||
|
|
|
@ -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 */
|
||||
|
|
|
@ -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, bus_size_t size, int cacheable, bus_sp
|
|||
return 0;
|
||||
}
|
||||
|
||||
/* Round the allocation to page boundries */
|
||||
/* Round the allocation to page boundaries */
|
||||
startpa = trunc_page(bpa);
|
||||
endpa = round_page(bpa + size);
|
||||
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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 ?
|
||||
|
|
|
@ -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_addr_t bpa, bus_size_t size, int cacheable
|
|||
{
|
||||
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);
|
||||
|
||||
|
|
|
@ -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_phase_table[] =
|
|||
};
|
||||
|
||||
/*
|
||||
* 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;
|
||||
|
|
|
@ -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_phase_table[] =
|
|||
};
|
||||
|
||||
/*
|
||||
* 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;
|
||||
|
|
|
@ -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 pagcnt)
|
|||
* 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
|
||||
|
|
Loading…
Reference in New Issue