Module Name: src
Committed By: andvar
Date: Sat Jul 24 22:30:59 UTC 2021
Modified Files:
src/sys/arch/acorn32/podulebus: if_ie.c
src/sys/coda: coda_opstats.h
src/sys/dev/pci: if_mcx.c if_vr.c
Log Message:
s/structres/structures + s/whenver/whenever
To generate a diff of this commit:
cvs rdiff -u -r1.48 -r1.49 src/sys/arch/acorn32/podulebus/if_ie.c
cvs rdiff -u -r1.6 -r1.7 src/sys/coda/coda_opstats.h
cvs rdiff -u -r1.17 -r1.18 src/sys/dev/pci/if_mcx.c
cvs rdiff -u -r1.134 -r1.135 src/sys/dev/pci/if_vr.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/acorn32/podulebus/if_ie.c
diff -u src/sys/arch/acorn32/podulebus/if_ie.c:1.48 src/sys/arch/acorn32/podulebus/if_ie.c:1.49
--- src/sys/arch/acorn32/podulebus/if_ie.c:1.48 Wed Feb 5 08:33:19 2020
+++ src/sys/arch/acorn32/podulebus/if_ie.c Sat Jul 24 22:30:59 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: if_ie.c,v 1.48 2020/02/05 08:33:19 skrll Exp $ */
+/* $NetBSD: if_ie.c,v 1.49 2021/07/24 22:30:59 andvar Exp $ */
/*
* Copyright (c) 1995 Melvin Tang-Richardson.
@@ -53,7 +53,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if_ie.c,v 1.48 2020/02/05 08:33:19 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_ie.c,v 1.49 2021/07/24 22:30:59 andvar Exp $");
#define IGNORE_ETHER1_IDROM_CHECKSUM
@@ -94,7 +94,7 @@ __KERNEL_RCSID(0, "$NetBSD: if_ie.c,v 1.
#include <netinet/if_inarp.h>
#endif
-/* Import our data structres */
+/* Import our data structures */
#include "if_iereg.h"
Index: src/sys/coda/coda_opstats.h
diff -u src/sys/coda/coda_opstats.h:1.6 src/sys/coda/coda_opstats.h:1.7
--- src/sys/coda/coda_opstats.h:1.6 Sun Dec 11 12:19:50 2005
+++ src/sys/coda/coda_opstats.h Sat Jul 24 22:30:59 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: coda_opstats.h,v 1.6 2005/12/11 12:19:50 christos Exp $ */
+/* $NetBSD: coda_opstats.h,v 1.7 2021/07/24 22:30:59 andvar Exp $ */
/*
*
@@ -104,7 +104,7 @@
#define CODA_VNODEOPS_SIZE 20
/*
- * I propose the following structres:
+ * I propose the following structures:
*/
struct coda_op_stats {
@@ -118,7 +118,7 @@ struct coda_op_stats {
};
/*
- * With each call to the minicache, we'll bump the counters whenver
+ * With each call to the minicache, we'll bump the counters whenever
* a call is satisfied internally (through the cache or through a
* redirect), and whenever an operation is caused internally.
* Then, we can add the total operations caught by the minicache
Index: src/sys/dev/pci/if_mcx.c
diff -u src/sys/dev/pci/if_mcx.c:1.17 src/sys/dev/pci/if_mcx.c:1.18
--- src/sys/dev/pci/if_mcx.c:1.17 Sat Feb 20 13:31:35 2021
+++ src/sys/dev/pci/if_mcx.c Sat Jul 24 22:30:59 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: if_mcx.c,v 1.17 2021/02/20 13:31:35 jmcneill Exp $ */
+/* $NetBSD: if_mcx.c,v 1.18 2021/07/24 22:30:59 andvar Exp $ */
/* $OpenBSD: if_mcx.c,v 1.99 2021/02/15 03:42:00 dlg Exp $ */
/*
@@ -23,7 +23,7 @@
#endif
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if_mcx.c,v 1.17 2021/02/20 13:31:35 jmcneill Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_mcx.c,v 1.18 2021/07/24 22:30:59 andvar Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -332,7 +332,7 @@ struct mcx_cmdq_mailbox {
#define MCX_CMDQ_MAILBOX_SIZE roundup(sizeof(struct mcx_cmdq_mailbox), \
MCX_CMDQ_MAILBOX_ALIGN)
/*
- * command mailbox structres
+ * command mailbox structures
*/
struct mcx_cmd_enable_hca_in {
Index: src/sys/dev/pci/if_vr.c
diff -u src/sys/dev/pci/if_vr.c:1.134 src/sys/dev/pci/if_vr.c:1.135
--- src/sys/dev/pci/if_vr.c:1.134 Sat May 8 00:27:02 2021
+++ src/sys/dev/pci/if_vr.c Sat Jul 24 22:30:59 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: if_vr.c,v 1.134 2021/05/08 00:27:02 thorpej Exp $ */
+/* $NetBSD: if_vr.c,v 1.135 2021/07/24 22:30:59 andvar Exp $ */
/*-
* Copyright (c) 1998, 1999 The NetBSD Foundation, Inc.
@@ -97,7 +97,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if_vr.c,v 1.134 2021/05/08 00:27:02 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_vr.c,v 1.135 2021/07/24 22:30:59 andvar Exp $");
@@ -174,7 +174,7 @@ static const struct device_compatible_en
#define VR_NEXTRX(x) (((x) + 1) & VR_NRXDESC_MASK)
/*
- * Control data structres that are DMA'd to the Rhine chip. We allocate
+ * Control data structures that are DMA'd to the Rhine chip. We allocate
* them in a single clump that maps to a single DMA segment to make several
* things easier.
*