Module Name: src
Committed By: andvar
Date: Mon Aug 9 21:38:05 UTC 2021
Modified Files:
src/libexec/telnetd: state.c
src/sys/arch/mips/mips: mips_machdep.c
src/sys/arch/shark/shark: scr.c
src/sys/dev: video.c
src/sys/dev/pci: cs4280.c
src/sys/fs/msdosfs: bootsect.h
src/sys/ufs/chfs: ebh.c
Log Message:
s/fist/first/
To generate a diff of this commit:
cvs rdiff -u -r1.31 -r1.32 src/libexec/telnetd/state.c
cvs rdiff -u -r1.302 -r1.303 src/sys/arch/mips/mips/mips_machdep.c
cvs rdiff -u -r1.32 -r1.33 src/sys/arch/shark/shark/scr.c
cvs rdiff -u -r1.41 -r1.42 src/sys/dev/video.c
cvs rdiff -u -r1.73 -r1.74 src/sys/dev/pci/cs4280.c
cvs rdiff -u -r1.6 -r1.7 src/sys/fs/msdosfs/bootsect.h
cvs rdiff -u -r1.7 -r1.8 src/sys/ufs/chfs/ebh.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/libexec/telnetd/state.c
diff -u src/libexec/telnetd/state.c:1.31 src/libexec/telnetd/state.c:1.32
--- src/libexec/telnetd/state.c:1.31 Sun Feb 3 03:19:25 2019
+++ src/libexec/telnetd/state.c Mon Aug 9 21:38:04 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: state.c,v 1.31 2019/02/03 03:19:25 mrg Exp $ */
+/* $NetBSD: state.c,v 1.32 2021/08/09 21:38:04 andvar Exp $ */
/*
* Copyright (c) 1989, 1993
@@ -34,7 +34,7 @@
#if 0
static char sccsid[] = "@(#)state.c 8.5 (Berkeley) 5/30/95";
#else
-__RCSID("$NetBSD: state.c,v 1.31 2019/02/03 03:19:25 mrg Exp $");
+__RCSID("$NetBSD: state.c,v 1.32 2021/08/09 21:38:04 andvar Exp $");
#endif
#endif /* not lint */
@@ -1307,7 +1307,7 @@ suboption(void)
* reversed. To be interoperable, we need to determine
* which way it is. If the first recognized character
* is a VAR or VALUE, then that will tell us what
- * type of client it is. If the fist recognized
+ * type of client it is. If the first recognized
* character is a USERVAR, then we continue scanning
* the suboption looking for two consecutive
* VAR or VALUE fields. We should not get two
Index: src/sys/arch/mips/mips/mips_machdep.c
diff -u src/sys/arch/mips/mips/mips_machdep.c:1.302 src/sys/arch/mips/mips/mips_machdep.c:1.303
--- src/sys/arch/mips/mips/mips_machdep.c:1.302 Wed Jun 2 00:00:39 2021
+++ src/sys/arch/mips/mips/mips_machdep.c Mon Aug 9 21:38:04 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: mips_machdep.c,v 1.302 2021/06/02 00:00:39 simonb Exp $ */
+/* $NetBSD: mips_machdep.c,v 1.303 2021/08/09 21:38:04 andvar Exp $ */
/*
* Copyright 2002 Wasabi Systems, Inc.
@@ -111,7 +111,7 @@
*/
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
-__KERNEL_RCSID(0, "$NetBSD: mips_machdep.c,v 1.302 2021/06/02 00:00:39 simonb Exp $");
+__KERNEL_RCSID(0, "$NetBSD: mips_machdep.c,v 1.303 2021/08/09 21:38:04 andvar Exp $");
#define __INTR_PRIVATE
#include "opt_cputype.h"
@@ -2082,7 +2082,7 @@ mips_init_msgbuf(void)
uvm_physseg_t bank = uvm_physseg_get_last();
#ifndef _LP64
/*
- * Fist the physical segment that can be mapped to KSEG0
+ * First the physical segment that can be mapped to KSEG0
*/
for (; uvm_physseg_valid_p(bank); bank = uvm_physseg_get_prev(bank)) {
if (uvm_physseg_get_avail_start(bank) + atop(sz) <= atop(MIPS_PHYS_MASK))
Index: src/sys/arch/shark/shark/scr.c
diff -u src/sys/arch/shark/shark/scr.c:1.32 src/sys/arch/shark/shark/scr.c:1.33
--- src/sys/arch/shark/shark/scr.c:1.32 Mon Aug 9 19:24:33 2021
+++ src/sys/arch/shark/shark/scr.c Mon Aug 9 21:38:04 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: scr.c,v 1.32 2021/08/09 19:24:33 andvar Exp $ */
+/* $NetBSD: scr.c,v 1.33 2021/08/09 21:38:04 andvar Exp $ */
/*
* Copyright 1997
@@ -102,7 +102,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: scr.c,v 1.32 2021/08/09 19:24:33 andvar Exp $");
+__KERNEL_RCSID(0, "$NetBSD: scr.c,v 1.33 2021/08/09 21:38:04 andvar Exp $");
#include "opt_ddb.h"
@@ -2914,7 +2914,7 @@ static void t0RecvByteSM(struct scr_so
sc->clkCountDataSend = sc->clkCountDataSend *2;
- /* adjust this so that we have clocked in only fist bit of TS */
+ /* adjust this so that we have clocked in only first bit of TS */
sc->shiftParity = 0;
sc->shiftByte = 0;
sc->shiftBits = 1;
Index: src/sys/dev/video.c
diff -u src/sys/dev/video.c:1.41 src/sys/dev/video.c:1.42
--- src/sys/dev/video.c:1.41 Sat Aug 7 16:19:08 2021
+++ src/sys/dev/video.c Mon Aug 9 21:38:04 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: video.c,v 1.41 2021/08/07 16:19:08 thorpej Exp $ */
+/* $NetBSD: video.c,v 1.42 2021/08/09 21:38:04 andvar Exp $ */
/*
* Copyright (c) 2008 Patrick Mahoney <[email protected]>
@@ -36,7 +36,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: video.c,v 1.41 2021/08/07 16:19:08 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: video.c,v 1.42 2021/08/09 21:38:04 andvar Exp $");
#include "video.h"
#if NVIDEO > 0
@@ -153,7 +153,7 @@ struct video_stream {
* grabs these in turn and fills them with video data. Once
* filled, they are moved to the egress queue. Samples are
* dequeued either by user with MMAP method or, with READ
- * method, videoread() works from the fist sample in the
+ * method, videoread() works from the first sample in the
* ingress queue without dequeing. In the first case, the
* user re-queues the buffer when finished, and videoread()
* does the same when all data has been read. The sample now
Index: src/sys/dev/pci/cs4280.c
diff -u src/sys/dev/pci/cs4280.c:1.73 src/sys/dev/pci/cs4280.c:1.74
--- src/sys/dev/pci/cs4280.c:1.73 Wed Feb 3 14:44:32 2021
+++ src/sys/dev/pci/cs4280.c Mon Aug 9 21:38:04 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: cs4280.c,v 1.73 2021/02/03 14:44:32 isaki Exp $ */
+/* $NetBSD: cs4280.c,v 1.74 2021/08/09 21:38:04 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.73 2021/02/03 14:44:32 isaki Exp $");
+__KERNEL_RCSID(0, "$NetBSD: cs4280.c,v 1.74 2021/08/09 21:38:04 andvar Exp $");
#include "midi.h"
@@ -1395,7 +1395,7 @@ cs4280_clear_fifos(struct cs428x_softc *
while (BA0READ4(sc, CS4280_SERBST) & SERBST_WBSY) {
delay(1000);
if (++n > 1000) {
- printf("clear_fifo: fist timeout cnt=%d\n", cnt);
+ printf("clear_fifo: first timeout cnt=%d\n", cnt);
break;
}
}
Index: src/sys/fs/msdosfs/bootsect.h
diff -u src/sys/fs/msdosfs/bootsect.h:1.6 src/sys/fs/msdosfs/bootsect.h:1.7
--- src/sys/fs/msdosfs/bootsect.h:1.6 Fri Jan 22 22:48:18 2016
+++ src/sys/fs/msdosfs/bootsect.h Mon Aug 9 21:38:05 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: bootsect.h,v 1.6 2016/01/22 22:48:18 dholland Exp $ */
+/* $NetBSD: bootsect.h,v 1.7 2021/08/09 21:38:05 andvar Exp $ */
/*
* Written by Paul Popelka ([email protected])
@@ -20,7 +20,7 @@
/*
* Format of a boot sector. This is the first sector on a DOS floppy disk
- * or the fist sector of a partition on a hard disk. But, it is not the
+ * or the first sector of a partition on a hard disk. But, it is not the
* first sector of a partitioned hard disk.
*/
struct bootsector33 {
Index: src/sys/ufs/chfs/ebh.c
diff -u src/sys/ufs/chfs/ebh.c:1.7 src/sys/ufs/chfs/ebh.c:1.8
--- src/sys/ufs/chfs/ebh.c:1.7 Wed Feb 7 08:50:13 2018
+++ src/sys/ufs/chfs/ebh.c Mon Aug 9 21:38:05 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: ebh.c,v 1.7 2018/02/07 08:50:13 ozaki-r Exp $ */
+/* $NetBSD: ebh.c,v 1.8 2021/08/09 21:38:05 andvar Exp $ */
/*-
* Copyright (c) 2010 Department of Software Engineering,
@@ -1760,7 +1760,7 @@ out_free:
* @ebh - chfs eraseblock handler
*
* This function gets a free eraseblock from the ebh->free RB-tree.
- * The fist entry will be returned and deleted from the tree.
+ * The first entry will be returned and deleted from the tree.
* The entries sorted by the erase counters, so the PEB with the smallest
* erase counter will be added back.
* If something goes bad a negative value will be returned.