Module Name: src Committed By: msaitoh Date: Sat Jun 24 05:31:05 UTC 2023
Modified Files: src/sys/arch/amd64/amd64: locore.S src/sys/arch/amiga/dev: if_esreg.h src/sys/arch/atari/dev: fd.c src/sys/arch/i386/stand/efiboot/bootx64: startprog64.S src/sys/arch/m68k/060sp/dist: fpsp.s src/sys/arch/mips/mips: locore.S src/sys/arch/newsmips/dev: scsi_1185.c src/sys/arch/powerpc/ibm4xx/dev: pcicreg.h src/sys/arch/powerpc/powerpc: ofwreal.S src/sys/arch/sgimips/sgimips: arcemu.h src/sys/arch/sun3/include: mon.h src/sys/arch/sun68k/include: mon.h Log Message: Fix typo in comment. To generate a diff of this commit: cvs rdiff -u -r1.221 -r1.222 src/sys/arch/amd64/amd64/locore.S cvs rdiff -u -r1.9 -r1.10 src/sys/arch/amiga/dev/if_esreg.h cvs rdiff -u -r1.95 -r1.96 src/sys/arch/atari/dev/fd.c cvs rdiff -u -r1.4 -r1.5 \ src/sys/arch/i386/stand/efiboot/bootx64/startprog64.S cvs rdiff -u -r1.6 -r1.7 src/sys/arch/m68k/060sp/dist/fpsp.s cvs rdiff -u -r1.230 -r1.231 src/sys/arch/mips/mips/locore.S cvs rdiff -u -r1.23 -r1.24 src/sys/arch/newsmips/dev/scsi_1185.c cvs rdiff -u -r1.1 -r1.2 src/sys/arch/powerpc/ibm4xx/dev/pcicreg.h cvs rdiff -u -r1.16 -r1.17 src/sys/arch/powerpc/powerpc/ofwreal.S cvs rdiff -u -r1.13 -r1.14 src/sys/arch/sgimips/sgimips/arcemu.h cvs rdiff -u -r1.29 -r1.30 src/sys/arch/sun3/include/mon.h cvs rdiff -u -r1.5 -r1.6 src/sys/arch/sun68k/include/mon.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/amd64/amd64/locore.S diff -u src/sys/arch/amd64/amd64/locore.S:1.221 src/sys/arch/amd64/amd64/locore.S:1.222 --- src/sys/arch/amd64/amd64/locore.S:1.221 Sun May 14 09:05:39 2023 +++ src/sys/arch/amd64/amd64/locore.S Sat Jun 24 05:31:04 2023 @@ -1,4 +1,4 @@ -/* $NetBSD: locore.S,v 1.221 2023/05/14 09:05:39 riastradh Exp $ */ +/* $NetBSD: locore.S,v 1.222 2023/06/24 05:31:04 msaitoh Exp $ */ /* * Copyright-o-rama! @@ -1771,7 +1771,7 @@ LABEL(nomds_leave_end) #ifdef SELFRELOC /* - * selfreloc(loadddr edi) + * selfreloc(loadaddr edi) * This is adapted from sys/arch/i386/i386/locore.S */ .code32 Index: src/sys/arch/amiga/dev/if_esreg.h diff -u src/sys/arch/amiga/dev/if_esreg.h:1.9 src/sys/arch/amiga/dev/if_esreg.h:1.10 --- src/sys/arch/amiga/dev/if_esreg.h:1.9 Sun Feb 19 21:35:07 2023 +++ src/sys/arch/amiga/dev/if_esreg.h Sat Jun 24 05:31:04 2023 @@ -1,4 +1,4 @@ -/* $NetBSD: if_esreg.h,v 1.9 2023/02/19 21:35:07 andvar Exp $ */ +/* $NetBSD: if_esreg.h,v 1.10 2023/06/24 05:31:04 msaitoh Exp $ */ /* * Copyright (c) 1995 Michael L. Hitch @@ -148,7 +148,7 @@ union smcregs { #define IST_TX 0x02 /* TX complete */ #define IST_RX 0x01 /* RX complete */ -/* Interrupt Acknowlege Register */ +/* Interrupt Acknowledge Register */ #define ACK_RX_OVRN IST_RX_OVRN #define ACK_TX_EMPTY IST_TX_EMPTY #define ACK_TX IST_TX Index: src/sys/arch/atari/dev/fd.c diff -u src/sys/arch/atari/dev/fd.c:1.95 src/sys/arch/atari/dev/fd.c:1.96 --- src/sys/arch/atari/dev/fd.c:1.95 Fri Jan 6 10:28:28 2023 +++ src/sys/arch/atari/dev/fd.c Sat Jun 24 05:31:04 2023 @@ -1,4 +1,4 @@ -/* $NetBSD: fd.c,v 1.95 2023/01/06 10:28:28 tsutsui Exp $ */ +/* $NetBSD: fd.c,v 1.96 2023/06/24 05:31:04 msaitoh Exp $ */ /* * Copyright (c) 1995 Leo Weppelman. @@ -44,7 +44,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: fd.c,v 1.95 2023/01/06 10:28:28 tsutsui Exp $"); +__KERNEL_RCSID(0, "$NetBSD: fd.c,v 1.96 2023/06/24 05:31:04 msaitoh Exp $"); #include <sys/param.h> #include <sys/systm.h> @@ -618,7 +618,7 @@ fdstrategy(struct buf *bp) bp->b_error = EINVAL; goto done; } - /* Trucate it */ + /* Truncate it */ if (bp->b_flags & B_RAW) bp->b_bcount = sz << DEV_BSHIFT; else Index: src/sys/arch/i386/stand/efiboot/bootx64/startprog64.S diff -u src/sys/arch/i386/stand/efiboot/bootx64/startprog64.S:1.4 src/sys/arch/i386/stand/efiboot/bootx64/startprog64.S:1.5 --- src/sys/arch/i386/stand/efiboot/bootx64/startprog64.S:1.4 Thu Apr 20 00:42:24 2023 +++ src/sys/arch/i386/stand/efiboot/bootx64/startprog64.S Sat Jun 24 05:31:04 2023 @@ -1,4 +1,4 @@ -/* $NetBSD: startprog64.S,v 1.4 2023/04/20 00:42:24 manu Exp $ */ +/* $NetBSD: startprog64.S,v 1.5 2023/06/24 05:31:04 msaitoh Exp $ */ /* NetBSD: startprog.S,v 1.3 2003/02/01 14:48:18 dsl Exp */ /* starts program in protected mode / flat space @@ -78,7 +78,7 @@ _C_LABEL(startprog64_size): .p2align 4,,15 /* - * startprog64(loadddr,entry,stack,kern_load,kern_start,kern_size) + * startprog64(loaddr,entry,stack,kern_load,kern_start,kern_size) */ ENTRY(startprog64_start) start: Index: src/sys/arch/m68k/060sp/dist/fpsp.s diff -u src/sys/arch/m68k/060sp/dist/fpsp.s:1.6 src/sys/arch/m68k/060sp/dist/fpsp.s:1.7 --- src/sys/arch/m68k/060sp/dist/fpsp.s:1.6 Wed Nov 10 16:47:41 2021 +++ src/sys/arch/m68k/060sp/dist/fpsp.s Sat Jun 24 05:31:04 2023 @@ -1,5 +1,5 @@ # -# $NetBSD: fpsp.s,v 1.6 2021/11/10 16:47:41 msaitoh Exp $ +# $NetBSD: fpsp.s,v 1.7 2023/06/24 05:31:04 msaitoh Exp $ # #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ @@ -8394,7 +8394,7 @@ LP1CONT1: fmul.x LOGOF2(%pc),%fp1 # GET K*LOG2 WHILE FP0 IS NOT READY fmov.x %fp0,%fp2 fmul.x %fp2,%fp2 # FP2 IS V=U*U - fmov.x %fp1,KLOG2(%a6) # PUT K*LOG2 IN MEMEORY, FREE FP1 + fmov.x %fp1,KLOG2(%a6) # PUT K*LOG2 IN MEMORY, FREE FP1 #--LOG(1+U) IS APPROXIMATED BY #--U + V*(A1+U*(A2+U*(A3+U*(A4+U*(A5+U*A6))))) WHICH IS Index: src/sys/arch/mips/mips/locore.S diff -u src/sys/arch/mips/mips/locore.S:1.230 src/sys/arch/mips/mips/locore.S:1.231 --- src/sys/arch/mips/mips/locore.S:1.230 Wed Mar 1 08:18:03 2023 +++ src/sys/arch/mips/mips/locore.S Sat Jun 24 05:31:04 2023 @@ -1,4 +1,4 @@ -/* $NetBSD: locore.S,v 1.230 2023/03/01 08:18:03 riastradh Exp $ */ +/* $NetBSD: locore.S,v 1.231 2023/06/24 05:31:04 msaitoh Exp $ */ /* * Copyright (c) 1992, 1993 @@ -63,7 +63,7 @@ #include <mips/trap.h> #include <mips/locore.h> -RCSID("$NetBSD: locore.S,v 1.230 2023/03/01 08:18:03 riastradh Exp $") +RCSID("$NetBSD: locore.S,v 1.231 2023/06/24 05:31:04 msaitoh Exp $") #include "assym.h" @@ -668,7 +668,7 @@ END(mips_cp0_status_write) * mips_fpu_trap -- * * Handle a floating point interrupt (r3k) or trap (r4k). - * the handlers are indentical, only the reporting mechanisms differ. + * the handlers are identical, only the reporting mechanisms differ. * * mips_fpu_intr(vaddr_t pc, struct trapframe *tf) * Index: src/sys/arch/newsmips/dev/scsi_1185.c diff -u src/sys/arch/newsmips/dev/scsi_1185.c:1.23 src/sys/arch/newsmips/dev/scsi_1185.c:1.24 --- src/sys/arch/newsmips/dev/scsi_1185.c:1.23 Thu Jul 21 19:49:58 2016 +++ src/sys/arch/newsmips/dev/scsi_1185.c Sat Jun 24 05:31:04 2023 @@ -1,4 +1,4 @@ -/* $NetBSD: scsi_1185.c,v 1.23 2016/07/21 19:49:58 christos Exp $ */ +/* $NetBSD: scsi_1185.c,v 1.24 2023/06/24 05:31:04 msaitoh Exp $ */ /* * Copyright (c) 1992, 1993 @@ -53,7 +53,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: scsi_1185.c,v 1.23 2016/07/21 19:49:58 christos Exp $"); +__KERNEL_RCSID(0, "$NetBSD: scsi_1185.c,v 1.24 2023/06/24 05:31:04 msaitoh Exp $"); #define __INTR_PRIVATE #include <sys/param.h> @@ -1646,7 +1646,7 @@ print_scsi_stat(struct sc_softc *sc) } /* - * return 0 if it was done. Or retun TRUE if it is busy. + * return 0 if it was done. Or return TRUE if it is busy. */ int sc_busy(struct sc_softc *sc, int chan) Index: src/sys/arch/powerpc/ibm4xx/dev/pcicreg.h diff -u src/sys/arch/powerpc/ibm4xx/dev/pcicreg.h:1.1 src/sys/arch/powerpc/ibm4xx/dev/pcicreg.h:1.2 --- src/sys/arch/powerpc/ibm4xx/dev/pcicreg.h:1.1 Tue Aug 13 04:57:49 2002 +++ src/sys/arch/powerpc/ibm4xx/dev/pcicreg.h Sat Jun 24 05:31:05 2023 @@ -1,4 +1,4 @@ -/* $NetBSD: pcicreg.h,v 1.1 2002/08/13 04:57:49 simonb Exp $ */ +/* $NetBSD: pcicreg.h,v 1.2 2023/06/24 05:31:05 msaitoh Exp $ */ /* * Copyright 2001 Wasabi Systems, Inc. @@ -38,7 +38,7 @@ #ifndef _IBM4XX_PCICREG_H_ #define _IBM4XX_PCICREG_H_ -/* PCI Configuaration Registers */ +/* PCI Configuration Registers */ #define PCIC_CFGADDR 0x00 #define PCIC_CFGDATA 0x04 @@ -85,7 +85,7 @@ #define PCIC_PMSCRR 0x64 -/* PCI Bridge Local Configuation Registers (0xef400000 0xef40003f - 64 bytes) */ +/* PCI Bridge Local Configuration Registers (0xef400000 0xef40003f - 64 bytes) */ #define PCIL_PMM0LA 0x00 /* PCI Master Map 0: Local Address */ #define PCIL_PMM0MA 0x04 /* Mask/Attribute */ #define PCIL_PMM0PCILA 0x08 /* PCI Low Address */ Index: src/sys/arch/powerpc/powerpc/ofwreal.S diff -u src/sys/arch/powerpc/powerpc/ofwreal.S:1.16 src/sys/arch/powerpc/powerpc/ofwreal.S:1.17 --- src/sys/arch/powerpc/powerpc/ofwreal.S:1.16 Fri Aug 20 20:25:27 2021 +++ src/sys/arch/powerpc/powerpc/ofwreal.S Sat Jun 24 05:31:05 2023 @@ -1,4 +1,4 @@ -/* $NetBSD: ofwreal.S,v 1.16 2021/08/20 20:25:27 andvar Exp $ */ +/* $NetBSD: ofwreal.S,v 1.17 2023/06/24 05:31:05 msaitoh Exp $ */ /* * Copyright (C) 1996 Wolfgang Solfrank. @@ -247,7 +247,7 @@ copy: blr /* - * Restore everyting related to the mmu from the saveare pointed to by r3. + * Restore everything related to the mmu from the saveare pointed to by r3. */ restoremmu: mfmsr %r12 Index: src/sys/arch/sgimips/sgimips/arcemu.h diff -u src/sys/arch/sgimips/sgimips/arcemu.h:1.13 src/sys/arch/sgimips/sgimips/arcemu.h:1.14 --- src/sys/arch/sgimips/sgimips/arcemu.h:1.13 Thu Jul 7 06:55:38 2016 +++ src/sys/arch/sgimips/sgimips/arcemu.h Sat Jun 24 05:31:05 2023 @@ -1,4 +1,4 @@ -/* $NetBSD: arcemu.h,v 1.13 2016/07/07 06:55:38 msaitoh Exp $ */ +/* $NetBSD: arcemu.h,v 1.14 2023/06/24 05:31:05 msaitoh Exp $ */ /* * Copyright (c) 2004 Steve Rumble @@ -74,7 +74,7 @@ static struct arcbios_component arcemu_c { -1, -1, -1, -1, -1, -1, -1, -1, -1, 0 } }; -/* Unimplmented Vector */ +/* Unimplemented Vector */ #define ARCEMU_UNIMPL ((int32_t)(intptr_t)arcemu_unimpl) static void arcemu_unimpl(void); Index: src/sys/arch/sun3/include/mon.h diff -u src/sys/arch/sun3/include/mon.h:1.29 src/sys/arch/sun3/include/mon.h:1.30 --- src/sys/arch/sun3/include/mon.h:1.29 Mon Apr 28 20:23:38 2008 +++ src/sys/arch/sun3/include/mon.h Sat Jun 24 05:31:05 2023 @@ -1,4 +1,4 @@ -/* $NetBSD: mon.h,v 1.29 2008/04/28 20:23:38 martin Exp $ */ +/* $NetBSD: mon.h,v 1.30 2023/06/24 05:31:05 msaitoh Exp $ */ /*- * Copyright (c) 1996 The NetBSD Foundation, Inc. @@ -35,7 +35,7 @@ * * In particular, this file came out of the Walnut Creek cdrom collection * which contained no warnings about any possible copyright infringement. - * It was also indentical to a file in the sprite kernel tar file found on + * It was also identical to a file in the sprite kernel tar file found on * allspice.berkeley.edu. * It also written in the annoying sprite coding style. I've made * efforts not to heavily edit their file, just ifdef parts out. -- glass Index: src/sys/arch/sun68k/include/mon.h diff -u src/sys/arch/sun68k/include/mon.h:1.5 src/sys/arch/sun68k/include/mon.h:1.6 --- src/sys/arch/sun68k/include/mon.h:1.5 Mon Apr 28 20:23:38 2008 +++ src/sys/arch/sun68k/include/mon.h Sat Jun 24 05:31:05 2023 @@ -1,4 +1,4 @@ -/* $NetBSD: mon.h,v 1.5 2008/04/28 20:23:38 martin Exp $ */ +/* $NetBSD: mon.h,v 1.6 2023/06/24 05:31:05 msaitoh Exp $ */ /*- * Copyright (c) 1996 The NetBSD Foundation, Inc. @@ -35,7 +35,7 @@ * * In particular, this file came out of the Walnut Creek cdrom collection * which contained no warnings about any possible copyright infringement. - * It was also indentical to a file in the sprite kernel tar file found on + * It was also identical to a file in the sprite kernel tar file found on * allspice.berkeley.edu. * It also written in the annoying sprite coding style. I've made * efforts not to heavily edit their file, just ifdef parts out. -- glass