summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorandvar <andvar@NetBSD.org>2022-08-07 11:06:18 +0000
committerandvar <andvar@NetBSD.org>2022-08-07 11:06:18 +0000
commita4f95a9c3db799b8a11dd5b922a217fa3f6d5b3c (patch)
tree3f5bf3a4e85533198becae6775237f2bbae26d29 /sys
parent5e6b415fa3a3e4cafc7e5fea05ccf59a10201f29 (diff)
fix various typos in comments, documentation and messages.
mainly s/paramater/parameter/ and s/reduntant/redundant/.
Diffstat (limited to 'sys')
-rw-r--r--sys/arch/bebox/stand/boot/fd.c4
-rw-r--r--sys/dev/nand/nand.h4
-rw-r--r--sys/fs/udf/udf.h4
-rw-r--r--sys/sys/wait.h4
4 files changed, 8 insertions, 8 deletions
diff --git a/sys/arch/bebox/stand/boot/fd.c b/sys/arch/bebox/stand/boot/fd.c
index 7c20c47f145..342f66d9873 100644
--- a/sys/arch/bebox/stand/boot/fd.c
+++ b/sys/arch/bebox/stand/boot/fd.c
@@ -1,4 +1,4 @@
-/* $NetBSD: fd.c,v 1.11 2014/12/12 15:57:30 phx Exp $ */
+/* $NetBSD: fd.c,v 1.12 2022/08/07 11:06:18 andvar Exp $ */
/*-
* Copyright (C) 1997-1998 Kazuki Sakamoto (sakamoto@NetBSD.org)
@@ -93,7 +93,7 @@ int FDC_PORT[] = { /* fdc base I/O port */
*---------------------------------------------------------------------------*/
struct fdd_type {
int seccount; /* sector per track */
- int secsize; /* byte per sector (uPD765 paramater) */
+ int secsize; /* byte per sector (uPD765 parameter) */
int datalen; /* data length */
int gap; /* gap */
int gaplen; /* gap length */
diff --git a/sys/dev/nand/nand.h b/sys/dev/nand/nand.h
index 0116555bf69..9a6b00b79fe 100644
--- a/sys/dev/nand/nand.h
+++ b/sys/dev/nand/nand.h
@@ -1,4 +1,4 @@
-/* $NetBSD: nand.h,v 1.20 2020/07/06 10:22:07 rin Exp $ */
+/* $NetBSD: nand.h,v 1.21 2022/08/07 11:06:19 andvar Exp $ */
/*-
* Copyright (c) 2010 Department of Software Engineering,
@@ -101,7 +101,7 @@ struct nand_ecc {
size_t necc_offset; /* offset of ecc data in oob */
size_t necc_size; /* size of ecc data in oob */
size_t necc_block_size; /* block size used in ecc calc */
- size_t necc_code_size; /* reduntant bytes per block */
+ size_t necc_code_size; /* redundant bytes per block */
int necc_steps; /* pagesize / code size */
int necc_type; /* type of the ecc engine */
};
diff --git a/sys/fs/udf/udf.h b/sys/fs/udf/udf.h
index 93806158a09..5b9773dd9e1 100644
--- a/sys/fs/udf/udf.h
+++ b/sys/fs/udf/udf.h
@@ -1,4 +1,4 @@
-/* $NetBSD: udf.h,v 1.53 2022/04/16 18:15:22 andvar Exp $ */
+/* $NetBSD: udf.h,v 1.54 2022/08/07 11:06:19 andvar Exp $ */
/*
* Copyright (c) 2006, 2008 Reinoud Zandijk
@@ -276,7 +276,7 @@ struct udf_mount {
struct pri_vol_desc *primary_vol; /* identification */
struct logvol_desc *logical_vol; /* main mapping v->p */
struct unalloc_sp_desc *unallocated; /* free UDF space */
- struct impvol_desc *implementation; /* likely reduntant */
+ struct impvol_desc *implementation; /* likely redundant */
struct logvol_int_desc *logvol_integrity; /* current integrity */
struct part_desc *partitions[UDF_PARTITIONS]; /* partitions */
/* logvol_info is derived; points *into* other structures */
diff --git a/sys/sys/wait.h b/sys/sys/wait.h
index dd7a323e6b3..8647bc1c7dd 100644
--- a/sys/sys/wait.h
+++ b/sys/sys/wait.h
@@ -1,4 +1,4 @@
-/* $NetBSD: wait.h,v 1.37 2021/12/08 20:50:03 andvar Exp $ */
+/* $NetBSD: wait.h,v 1.38 2022/08/07 11:06:19 andvar Exp $ */
/*
* Copyright (c) 1982, 1986, 1989, 1993, 1994
@@ -101,7 +101,7 @@
* (changing their status to have been already waited for).
*/
#define WNOHANG 0x00000001 /* don't hang in wait */
-#define WSTOPPED 0x00000002 /* include stopped/untraceed children */
+#define WSTOPPED 0x00000002 /* include stopped/untraced children */
#define WUNTRACED WSTOPPED /* the original name for WSTOPPED */
#define WCONTINUED 0x00000010 /* include continued processes */
#define WEXITED 0x00000020 /* Wait for exited processes. */