Module Name:    src
Committed By:   andvar
Date:           Mon May 23 19:21:30 UTC 2022

Modified Files:
        src/lib/libc/stdlib: strfmon.c
        src/sys/arch/bebox/stand/boot: siop.c
        src/sys/dev/ic: esiop.c siop_common.c
        src/sys/dev/microcode/siop: esiop.ss

Log Message:
s/beggining/beginning/ in comments.


To generate a diff of this commit:
cvs rdiff -u -r1.15 -r1.16 src/lib/libc/stdlib/strfmon.c
cvs rdiff -u -r1.9 -r1.10 src/sys/arch/bebox/stand/boot/siop.c
cvs rdiff -u -r1.60 -r1.61 src/sys/dev/ic/esiop.c
cvs rdiff -u -r1.56 -r1.57 src/sys/dev/ic/siop_common.c
cvs rdiff -u -r1.21 -r1.22 src/sys/dev/microcode/siop/esiop.ss

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/lib/libc/stdlib/strfmon.c
diff -u src/lib/libc/stdlib/strfmon.c:1.15 src/lib/libc/stdlib/strfmon.c:1.16
--- src/lib/libc/stdlib/strfmon.c:1.15	Tue Apr 19 20:32:16 2022
+++ src/lib/libc/stdlib/strfmon.c	Mon May 23 19:21:30 2022
@@ -1,4 +1,4 @@
-/*	$NetBSD: strfmon.c,v 1.15 2022/04/19 20:32:16 rillig Exp $	*/
+/*	$NetBSD: strfmon.c,v 1.16 2022/05/23 19:21:30 andvar Exp $	*/
 
 /*-
  * Copyright (c) 2001 Alexey Zelkin <phan...@freebsd.org>
@@ -32,7 +32,7 @@
 #if 0
 __FBSDID("$FreeBSD: src/lib/libc/stdlib/strfmon.c,v 1.14 2003/03/20 08:18:55 ache Exp $");
 #else
-__RCSID("$NetBSD: strfmon.c,v 1.15 2022/04/19 20:32:16 rillig Exp $");
+__RCSID("$NetBSD: strfmon.c,v 1.16 2022/05/23 19:21:30 andvar Exp $");
 #endif
 #endif /* LIBC_SCCS and not lint */
 
@@ -563,7 +563,7 @@ __format_grouped_double(struct lconv *lc
 	}
 	bufend = rslt + bufsize - 1;	/* reserve space for trailing '\0' */
 
-	/* skip spaces at beggining */
+	/* skip spaces at beginning */
 	padded = 0;
 	while (avalue[padded] == ' ') {
 		padded++;

Index: src/sys/arch/bebox/stand/boot/siop.c
diff -u src/sys/arch/bebox/stand/boot/siop.c:1.9 src/sys/arch/bebox/stand/boot/siop.c:1.10
--- src/sys/arch/bebox/stand/boot/siop.c:1.9	Sun May 22 11:27:34 2022
+++ src/sys/arch/bebox/stand/boot/siop.c	Mon May 23 19:21:30 2022
@@ -1,4 +1,4 @@
-/*	$NetBSD: siop.c,v 1.9 2022/05/22 11:27:34 andvar Exp $	*/
+/*	$NetBSD: siop.c,v 1.10 2022/05/23 19:21:30 andvar Exp $	*/
 /*
  * Copyright (c) 2010 KIYOHARA Takashi
  * All rights reserved.
@@ -213,7 +213,7 @@ siop_sdp(struct siop_adapter *adp, struc
 
 	/*
 	 * now we can remove entries which have been transferred.
-	 * We just move the entries with data left at the beggining of the
+	 * We just move the entries with data left at the beginning of the
 	 * tables
 	 */
 	memmove(xfer->siop_tables.data, &xfer->siop_tables.data[offset],

Index: src/sys/dev/ic/esiop.c
diff -u src/sys/dev/ic/esiop.c:1.60 src/sys/dev/ic/esiop.c:1.61
--- src/sys/dev/ic/esiop.c:1.60	Wed Feb 23 21:54:41 2022
+++ src/sys/dev/ic/esiop.c	Mon May 23 19:21:30 2022
@@ -1,4 +1,4 @@
-/*	$NetBSD: esiop.c,v 1.60 2022/02/23 21:54:41 andvar Exp $	*/
+/*	$NetBSD: esiop.c,v 1.61 2022/05/23 19:21:30 andvar Exp $	*/
 
 /*
  * Copyright (c) 2002 Manuel Bouyer.
@@ -28,7 +28,7 @@
 /* SYM53c7/8xx PCI-SCSI I/O Processors driver */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: esiop.c,v 1.60 2022/02/23 21:54:41 andvar Exp $");
+__KERNEL_RCSID(0, "$NetBSD: esiop.c,v 1.61 2022/05/23 19:21:30 andvar Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -209,7 +209,7 @@ esiop_reset(struct esiop_softc *sc)
 	siop_common_reset(&sc->sc_c);
 
 	/*
-	 * we copy the script at the beggining of RAM. Then there is 4 bytes
+	 * we copy the script at the beginning of RAM. Then there is 4 bytes
 	 * for messages in, and 4 bytes for semaphore
 	 */
 	sc->sc_free_offset = __arraycount(esiop_script);

Index: src/sys/dev/ic/siop_common.c
diff -u src/sys/dev/ic/siop_common.c:1.56 src/sys/dev/ic/siop_common.c:1.57
--- src/sys/dev/ic/siop_common.c:1.56	Sun May 22 11:27:35 2022
+++ src/sys/dev/ic/siop_common.c	Mon May 23 19:21:30 2022
@@ -1,4 +1,4 @@
-/*	$NetBSD: siop_common.c,v 1.56 2022/05/22 11:27:35 andvar Exp $	*/
+/*	$NetBSD: siop_common.c,v 1.57 2022/05/23 19:21:30 andvar Exp $	*/
 
 /*
  * Copyright (c) 2000, 2002 Manuel Bouyer.
@@ -28,7 +28,7 @@
 /* SYM53c7/8xx PCI-SCSI I/O Processors driver */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: siop_common.c,v 1.56 2022/05/22 11:27:35 andvar Exp $");
+__KERNEL_RCSID(0, "$NetBSD: siop_common.c,v 1.57 2022/05/23 19:21:30 andvar Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -841,7 +841,7 @@ siop_sdp(struct siop_common_cmd *siop_cm
 
 	/*
 	 * now we can remove entries which have been transferred.
-	 * We just move the entries with data left at the beggining of the
+	 * We just move the entries with data left at the beginning of the
 	 * tables
 	 */
 	memmove(&siop_cmd->siop_tables->data[0],

Index: src/sys/dev/microcode/siop/esiop.ss
diff -u src/sys/dev/microcode/siop/esiop.ss:1.21 src/sys/dev/microcode/siop/esiop.ss:1.22
--- src/sys/dev/microcode/siop/esiop.ss:1.21	Mon Oct 19 18:41:13 2009
+++ src/sys/dev/microcode/siop/esiop.ss	Mon May 23 19:21:30 2022
@@ -1,4 +1,4 @@
-;	$NetBSD: esiop.ss,v 1.21 2009/10/19 18:41:13 bouyer Exp $
+;	$NetBSD: esiop.ss,v 1.22 2022/05/23 19:21:30 andvar Exp $
 
 ;
 ; Copyright (c) 2002 Manuel Bouyer.
@@ -288,7 +288,7 @@ ignore_cmd:
 	MOVE SCRATCHD3 + 0 to SCRATCHD3 WITH CARRY;
 	MOVE SCRATCHE0 TO SFBR;
 	JUMP REL(handle_cmd), IF  NOT ncmd_slots_last;
-; reset pointers to beggining of area
+; reset pointers to beginning of area
 cmdr0:
 	MOVE 0xff to SCRATCHD0; correct value will be patched by driver
 cmdr1:

Reply via email to