Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/dev/nand fix folloing->following typos in more files.
details: https://anonhg.NetBSD.org/src/rev/49a1d67376a3
branches: trunk
changeset: 366629:49a1d67376a3
user: andvar <andvar%NetBSD.org@localhost>
date: Fri Jun 03 12:10:50 2022 +0000
description:
fix folloing->following typos in more files.
also s/begginning/beginning/.
diffstat:
sys/arch/bebox/stand/boot/siop.c | 6 +++---
sys/arch/mips/cavium/dev/octeon_gmx.c | 8 ++++----
sys/arch/prep/stand/boot/siop.c | 4 ++--
sys/dev/ic/siop_common.c | 8 ++++----
sys/dev/nand/onfi.h | 4 ++--
5 files changed, 15 insertions(+), 15 deletions(-)
diffs (135 lines):
diff -r 12685d43dde4 -r 49a1d67376a3 sys/arch/bebox/stand/boot/siop.c
--- a/sys/arch/bebox/stand/boot/siop.c Fri Jun 03 10:42:17 2022 +0000
+++ b/sys/arch/bebox/stand/boot/siop.c Fri Jun 03 12:10:50 2022 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: siop.c,v 1.10 2022/05/23 19:21:30 andvar Exp $ */
+/* $NetBSD: siop.c,v 1.11 2022/06/03 12:10:50 andvar Exp $ */
/*
* Copyright (c) 2010 KIYOHARA Takashi
* All rights reserved.
@@ -183,7 +183,7 @@
return;
/*
* Save data pointer. We do this by adjusting the tables to point
- * at the begginning of the data not yet transferred.
+ * at the beginning of the data not yet transferred.
* offset points to the first table with untransferred data.
*/
@@ -238,7 +238,7 @@
#if 0
/*
* if CMDFL_RESID is set, the last table (pointed by offset) is a
- * partial transfers. If not, offset points to the entry folloing
+ * partial transfers. If not, offset points to the entry following
* the last full transfer.
*/
if (siop_cmd->flags & CMDFL_RESID) {
diff -r 12685d43dde4 -r 49a1d67376a3 sys/arch/mips/cavium/dev/octeon_gmx.c
--- a/sys/arch/mips/cavium/dev/octeon_gmx.c Fri Jun 03 10:42:17 2022 +0000
+++ b/sys/arch/mips/cavium/dev/octeon_gmx.c Fri Jun 03 12:10:50 2022 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: octeon_gmx.c,v 1.21 2022/05/04 07:32:50 andvar Exp $ */
+/* $NetBSD: octeon_gmx.c,v 1.22 2022/06/03 12:10:50 andvar Exp $ */
/*
* Copyright (c) 2007 Internet Initiative Japan, Inc.
@@ -27,7 +27,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: octeon_gmx.c,v 1.21 2022/05/04 07:32:50 andvar Exp $");
+__KERNEL_RCSID(0, "$NetBSD: octeon_gmx.c,v 1.22 2022/06/03 12:10:50 andvar Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -337,7 +337,7 @@
sc->sc_port_types[2] = GMX_RGMII_PORT;
} else {
/* port 1: GMII/MII, port 2: disabled */
- /* GMII or MII port is slected by GMX_PRT1_CFG[SPEED] */
+ /* GMII or MII port is selected by GMX_PRT1_CFG[SPEED] */
sc->sc_nports = 2;
sc->sc_port_types[1] = GMX_GMII_PORT;
}
@@ -1160,7 +1160,7 @@
/*
* GMX0_RX0_STATS_PKTS is not count.
- * input packet is counted when recepted packet in if_cnmac.
+ * input packet is counted when received packet in if_cnmac.
*/
/*
* GMX0_RX0_STATS_PKTS_BAD count is included
diff -r 12685d43dde4 -r 49a1d67376a3 sys/arch/prep/stand/boot/siop.c
--- a/sys/arch/prep/stand/boot/siop.c Fri Jun 03 10:42:17 2022 +0000
+++ b/sys/arch/prep/stand/boot/siop.c Fri Jun 03 12:10:50 2022 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: siop.c,v 1.5 2021/08/21 23:00:31 andvar Exp $ */
+/* $NetBSD: siop.c,v 1.6 2022/06/03 12:10:50 andvar Exp $ */
/*
* Copyright (c) 2010 KIYOHARA Takashi
* All rights reserved.
@@ -215,7 +215,7 @@
#if 0
/*
* if CMDFL_RESID is set, the last table (pointed by offset) is a
- * partial transfers. If not, offset points to the entry folloing
+ * partial transfers. If not, offset points to the entry following
* the last full transfer.
*/
if (siop_cmd->flags & CMDFL_RESID) {
diff -r 12685d43dde4 -r 49a1d67376a3 sys/dev/ic/siop_common.c
--- a/sys/dev/ic/siop_common.c Fri Jun 03 10:42:17 2022 +0000
+++ b/sys/dev/ic/siop_common.c Fri Jun 03 12:10:50 2022 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: siop_common.c,v 1.57 2022/05/23 19:21:30 andvar Exp $ */
+/* $NetBSD: siop_common.c,v 1.58 2022/06/03 12:10:51 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.57 2022/05/23 19:21:30 andvar Exp $");
+__KERNEL_RCSID(0, "$NetBSD: siop_common.c,v 1.58 2022/06/03 12:10:51 andvar Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -815,7 +815,7 @@
#endif
/*
* Save data pointer. We do this by adjusting the tables to point
- * at the begginning of the data not yet transferred.
+ * at the beginning of the data not yet transferred.
* offset points to the first table with untransferred data.
*/
@@ -869,7 +869,7 @@
siop_ctoh32(sc, siop_cmd->siop_tables->data[i].count);
/*
* if CMDFL_RESID is set, the last table (pointed by offset) is a
- * partial transfers. If not, offset points to the entry folloing
+ * partial transfers. If not, offset points to the entry following
* the last full transfer.
*/
if (siop_cmd->flags & CMDFL_RESID) {
diff -r 12685d43dde4 -r 49a1d67376a3 sys/dev/nand/onfi.h
--- a/sys/dev/nand/onfi.h Fri Jun 03 10:42:17 2022 +0000
+++ b/sys/dev/nand/onfi.h Fri Jun 03 12:10:50 2022 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: onfi.h,v 1.3 2021/12/05 04:57:38 msaitoh Exp $ */
+/* $NetBSD: onfi.h,v 1.4 2022/06/03 12:10:51 andvar Exp $ */
/*-
* Copyright (c) 2010 Department of Software Engineering,
@@ -140,7 +140,7 @@
uint16_t param_lun_maxbad; /* M: maximum badblocks per LUN */
uint16_t param_block_endurance; /* M: block endurance */
uint8_t param_guaranteed_blocks; /* M: guaranteed valid blocks at
- begginning of target */
+ beginning of target */
uint16_t param_guaranteed_endurance; /* M: block endurance of
guaranteed blocks */
uint8_t param_programs_per_page; /* M: number of programs per page */
Home |
Main Index |
Thread Index |
Old Index