Module Name: src Committed By: andvar Date: Fri Jun 3 12:10:51 UTC 2022
Modified Files: src/sys/arch/bebox/stand/boot: siop.c src/sys/arch/mips/cavium/dev: octeon_gmx.c src/sys/arch/prep/stand/boot: siop.c src/sys/dev/ic: siop_common.c src/sys/dev/nand: onfi.h Log Message: fix folloing->following typos in more files. also s/begginning/beginning/. To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11 src/sys/arch/bebox/stand/boot/siop.c cvs rdiff -u -r1.21 -r1.22 src/sys/arch/mips/cavium/dev/octeon_gmx.c cvs rdiff -u -r1.5 -r1.6 src/sys/arch/prep/stand/boot/siop.c cvs rdiff -u -r1.57 -r1.58 src/sys/dev/ic/siop_common.c cvs rdiff -u -r1.3 -r1.4 src/sys/dev/nand/onfi.h 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/bebox/stand/boot/siop.c diff -u src/sys/arch/bebox/stand/boot/siop.c:1.10 src/sys/arch/bebox/stand/boot/siop.c:1.11 --- src/sys/arch/bebox/stand/boot/siop.c:1.10 Mon May 23 19:21:30 2022 +++ src/sys/arch/bebox/stand/boot/siop.c Fri Jun 3 12:10:50 2022 @@ -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 @@ siop_sdp(struct siop_adapter *adp, struc 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 @@ siop_update_resid(struct siop_adapter *a #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) { Index: src/sys/arch/mips/cavium/dev/octeon_gmx.c diff -u src/sys/arch/mips/cavium/dev/octeon_gmx.c:1.21 src/sys/arch/mips/cavium/dev/octeon_gmx.c:1.22 --- src/sys/arch/mips/cavium/dev/octeon_gmx.c:1.21 Wed May 4 07:32:50 2022 +++ src/sys/arch/mips/cavium/dev/octeon_gmx.c Fri Jun 3 12:10:50 2022 @@ -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 @@ octgmx_init(struct octgmx_softc *sc) 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 @@ octgmx_stats(struct octgmx_port_softc *s /* * 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 Index: src/sys/arch/prep/stand/boot/siop.c diff -u src/sys/arch/prep/stand/boot/siop.c:1.5 src/sys/arch/prep/stand/boot/siop.c:1.6 --- src/sys/arch/prep/stand/boot/siop.c:1.5 Sat Aug 21 23:00:31 2021 +++ src/sys/arch/prep/stand/boot/siop.c Fri Jun 3 12:10:50 2022 @@ -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 @@ siop_update_resid(struct siop_adapter *a #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) { Index: src/sys/dev/ic/siop_common.c diff -u src/sys/dev/ic/siop_common.c:1.57 src/sys/dev/ic/siop_common.c:1.58 --- src/sys/dev/ic/siop_common.c:1.57 Mon May 23 19:21:30 2022 +++ src/sys/dev/ic/siop_common.c Fri Jun 3 12:10:51 2022 @@ -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 @@ siop_sdp(struct siop_common_cmd *siop_cm #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_update_resid(struct siop_common_cmd 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) { Index: src/sys/dev/nand/onfi.h diff -u src/sys/dev/nand/onfi.h:1.3 src/sys/dev/nand/onfi.h:1.4 --- src/sys/dev/nand/onfi.h:1.3 Sun Dec 5 04:57:38 2021 +++ src/sys/dev/nand/onfi.h Fri Jun 3 12:10:51 2022 @@ -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 @@ struct onfi_parameter_page { 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 */