Module Name:    src
Committed By:   andvar
Date:           Sat Dec 24 15:23:03 UTC 2022

Modified Files:
        src/sys/arch/x86/x86: efi_machdep.c
        src/sys/compat/linux/common: linux_socket.c
        src/sys/compat/linux32/common: linux32_socket.c
        src/sys/dev/isa: ess.c
        src/sys/dev/pci: cs4280.c
        src/sys/dev/sbus: stp4020.c
        src/usr.sbin/bootp/bootptest: bootptest.c

Log Message:
s/reqest/request/, s/requst/request/ and s/reuqest/request/ in comments.


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/sys/arch/x86/x86/efi_machdep.c
cvs rdiff -u -r1.154 -r1.155 src/sys/compat/linux/common/linux_socket.c
cvs rdiff -u -r1.31 -r1.32 src/sys/compat/linux32/common/linux32_socket.c
cvs rdiff -u -r1.89 -r1.90 src/sys/dev/isa/ess.c
cvs rdiff -u -r1.74 -r1.75 src/sys/dev/pci/cs4280.c
cvs rdiff -u -r1.72 -r1.73 src/sys/dev/sbus/stp4020.c
cvs rdiff -u -r1.21 -r1.22 src/usr.sbin/bootp/bootptest/bootptest.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/x86/x86/efi_machdep.c
diff -u src/sys/arch/x86/x86/efi_machdep.c:1.3 src/sys/arch/x86/x86/efi_machdep.c:1.4
--- src/sys/arch/x86/x86/efi_machdep.c:1.3	Sat Sep 24 15:01:54 2022
+++ src/sys/arch/x86/x86/efi_machdep.c	Sat Dec 24 15:23:02 2022
@@ -1,4 +1,4 @@
-/*	$NetBSD: efi_machdep.c,v 1.3 2022/09/24 15:01:54 riastradh Exp $	*/
+/*	$NetBSD: efi_machdep.c,v 1.4 2022/12/24 15:23:02 andvar Exp $	*/
 
 /*-
  * Copyright (c) 2016 The NetBSD Foundation, Inc.
@@ -27,7 +27,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: efi_machdep.c,v 1.3 2022/09/24 15:01:54 riastradh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: efi_machdep.c,v 1.4 2022/12/24 15:23:02 andvar Exp $");
 
 #include "efi.h"
 #include "opt_efi.h"
@@ -716,7 +716,7 @@ efi_runtime_init(void)
 		 * Get the physical address, and the virtual address
 		 * that the EFI runtime services want mapped to it.
 		 *
-		 * If the requsted virtual address is zero, assume
+		 * If the requested virtual address is zero, assume
 		 * we're using physical addressing, i.e., VA is the
 		 * same as PA.
 		 *

Index: src/sys/compat/linux/common/linux_socket.c
diff -u src/sys/compat/linux/common/linux_socket.c:1.154 src/sys/compat/linux/common/linux_socket.c:1.155
--- src/sys/compat/linux/common/linux_socket.c:1.154	Thu Sep 23 06:56:27 2021
+++ src/sys/compat/linux/common/linux_socket.c	Sat Dec 24 15:23:02 2022
@@ -1,4 +1,4 @@
-/*	$NetBSD: linux_socket.c,v 1.154 2021/09/23 06:56:27 ryo Exp $	*/
+/*	$NetBSD: linux_socket.c,v 1.155 2022/12/24 15:23:02 andvar Exp $	*/
 
 /*-
  * Copyright (c) 1995, 1998, 2008 The NetBSD Foundation, Inc.
@@ -35,7 +35,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: linux_socket.c,v 1.154 2021/09/23 06:56:27 ryo Exp $");
+__KERNEL_RCSID(0, "$NetBSD: linux_socket.c,v 1.155 2022/12/24 15:23:02 andvar Exp $");
 
 #if defined(_KERNEL_OPT)
 #include "opt_inet.h"
@@ -1352,7 +1352,7 @@ linux_getifhwaddr(struct lwp *l, registe
 			    sadl->sdl_type != IFT_ETHER)
 				continue;
 			if (ifnum--)
-				/* not the reqested iface */
+				/* not the requested iface */
 				continue;
 			memcpy(&lreq.ifr_hwaddr.sa_data,
 			       CLLADDR(sadl),

Index: src/sys/compat/linux32/common/linux32_socket.c
diff -u src/sys/compat/linux32/common/linux32_socket.c:1.31 src/sys/compat/linux32/common/linux32_socket.c:1.32
--- src/sys/compat/linux32/common/linux32_socket.c:1.31	Thu Jul 16 15:02:08 2020
+++ src/sys/compat/linux32/common/linux32_socket.c	Sat Dec 24 15:23:02 2022
@@ -1,4 +1,4 @@
-/*	$NetBSD: linux32_socket.c,v 1.31 2020/07/16 15:02:08 msaitoh Exp $ */
+/*	$NetBSD: linux32_socket.c,v 1.32 2022/12/24 15:23:02 andvar Exp $ */
 
 /*-
  * Copyright (c) 2006 Emmanuel Dreyfus, all rights reserved.
@@ -33,7 +33,7 @@
 
 #include <sys/cdefs.h>
 
-__KERNEL_RCSID(0, "$NetBSD: linux32_socket.c,v 1.31 2020/07/16 15:02:08 msaitoh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: linux32_socket.c,v 1.32 2022/12/24 15:23:02 andvar Exp $");
 
 #include <sys/types.h>
 #include <sys/param.h>
@@ -597,7 +597,7 @@ linux32_getifhwaddr(struct lwp *l, regis
 				    sadl->sdl_type != IFT_ETHER)
 					continue;
 				if (ifnum--)
-					/* not the reqested iface */
+					/* not the requested iface */
 					continue;
 				memcpy(&lreq.ifr_hwaddr.sa_data,
 				       CLLADDR(sadl),

Index: src/sys/dev/isa/ess.c
diff -u src/sys/dev/isa/ess.c:1.89 src/sys/dev/isa/ess.c:1.90
--- src/sys/dev/isa/ess.c:1.89	Sat Aug  7 16:19:12 2021
+++ src/sys/dev/isa/ess.c	Sat Dec 24 15:23:02 2022
@@ -1,4 +1,4 @@
-/*	$NetBSD: ess.c,v 1.89 2021/08/07 16:19:12 thorpej Exp $	*/
+/*	$NetBSD: ess.c,v 1.90 2022/12/24 15:23:02 andvar Exp $	*/
 
 /*
  * Copyright 1997
@@ -66,7 +66,7 @@
 */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ess.c,v 1.89 2021/08/07 16:19:12 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ess.c,v 1.90 2022/12/24 15:23:02 andvar Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -2451,7 +2451,7 @@ ess_srtotc(struct ess_softc *sc, u_int r
 
 
 /*
- * Calculate the filter constant for the reuqested sampling rate.
+ * Calculate the filter constant for the requested sampling rate.
  */
 u_int
 ess_srtofc(u_int rate)

Index: src/sys/dev/pci/cs4280.c
diff -u src/sys/dev/pci/cs4280.c:1.74 src/sys/dev/pci/cs4280.c:1.75
--- src/sys/dev/pci/cs4280.c:1.74	Mon Aug  9 21:38:04 2021
+++ src/sys/dev/pci/cs4280.c	Sat Dec 24 15:23:02 2022
@@ -1,4 +1,4 @@
-/*	$NetBSD: cs4280.c,v 1.74 2021/08/09 21:38:04 andvar Exp $	*/
+/*	$NetBSD: cs4280.c,v 1.75 2022/12/24 15:23:02 andvar Exp $	*/
 
 /*
  * Copyright (c) 1999, 2000 Tatoku Ogaito.  All rights reserved.
@@ -52,7 +52,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: cs4280.c,v 1.74 2021/08/09 21:38:04 andvar Exp $");
+__KERNEL_RCSID(0, "$NetBSD: cs4280.c,v 1.75 2022/12/24 15:23:02 andvar Exp $");
 
 #include "midi.h"
 
@@ -1192,7 +1192,7 @@ cs4280_reset(void *sc_)
 	delay(100);
 	/* Clear RSTSP bit in SPCR */
 	BA1WRITE4(sc, CS4280_SPCR, 0);
-	/* enable DMA reqest */
+	/* enable DMA request */
 	BA1WRITE4(sc, CS4280_SPCR, SPCR_DRQEN);
 }
 

Index: src/sys/dev/sbus/stp4020.c
diff -u src/sys/dev/sbus/stp4020.c:1.72 src/sys/dev/sbus/stp4020.c:1.73
--- src/sys/dev/sbus/stp4020.c:1.72	Wed May  4 07:48:35 2022
+++ src/sys/dev/sbus/stp4020.c	Sat Dec 24 15:23:02 2022
@@ -1,4 +1,4 @@
-/*	$NetBSD: stp4020.c,v 1.72 2022/05/04 07:48:35 andvar Exp $ */
+/*	$NetBSD: stp4020.c,v 1.73 2022/12/24 15:23:02 andvar Exp $ */
 
 /*-
  * Copyright (c) 1998 The NetBSD Foundation, Inc.
@@ -34,7 +34,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: stp4020.c,v 1.72 2022/05/04 07:48:35 andvar Exp $");
+__KERNEL_RCSID(0, "$NetBSD: stp4020.c,v 1.73 2022/12/24 15:23:02 andvar Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -345,7 +345,7 @@ stp4020attach(device_t parent, device_t 
 	/*
 	 * On sparc64 the hardware interrupt priority does not restrict
 	 * the IPL we run our interrupt handler on, so we can always just
-	 * use the first interrupt and reqest the handler to run at
+	 * use the first interrupt and request the handler to run at
 	 * IPL_VM.
 	 */
 	sbus_intno = 0;

Index: src/usr.sbin/bootp/bootptest/bootptest.c
diff -u src/usr.sbin/bootp/bootptest/bootptest.c:1.21 src/usr.sbin/bootp/bootptest/bootptest.c:1.22
--- src/usr.sbin/bootp/bootptest/bootptest.c:1.21	Thu May  4 16:26:09 2017
+++ src/usr.sbin/bootp/bootptest/bootptest.c	Sat Dec 24 15:23:03 2022
@@ -1,4 +1,4 @@
-/*	$NetBSD: bootptest.c,v 1.21 2017/05/04 16:26:09 sevan Exp $	*/
+/*	$NetBSD: bootptest.c,v 1.22 2022/12/24 15:23:03 andvar Exp $	*/
 
 /*
  * bootptest.c - Test out a bootp server.
@@ -36,7 +36,7 @@
 
 #include <sys/cdefs.h>
 #ifndef lint
-__RCSID("$NetBSD: bootptest.c,v 1.21 2017/05/04 16:26:09 sevan Exp $");
+__RCSID("$NetBSD: bootptest.c,v 1.22 2022/12/24 15:23:03 andvar Exp $");
 #endif
 
 static const char usage[] =
@@ -179,7 +179,7 @@ main(int argc, char **argv)
 			break;
 		switch (argv[0][1]) {
 
-		case 'f':				/* File name to reqest. */
+		case 'f':				/* File name to request. */
 			if (argc < 2)
 				goto error;
 			argc--; argv++;

Reply via email to