Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/tests/dev/audio Fix typo in comment.



details:   https://anonhg.NetBSD.org/src/rev/3408b3e5442a
branches:  trunk
changeset: 376607:3408b3e5442a
user:      msaitoh <msaitoh%NetBSD.org@localhost>
date:      Sat Jun 24 05:27:13 2023 +0000

description:
Fix typo in comment.

diffstat:

 external/bsd/ipf/dist/ip_fil.c                    |  4 ++--
 sys/arch/amd64/amd64/locore.S                     |  4 ++--
 sys/arch/amiga/dev/if_esreg.h                     |  4 ++--
 sys/arch/atari/dev/fd.c                           |  6 +++---
 sys/arch/i386/stand/efiboot/bootx64/startprog64.S |  4 ++--
 sys/arch/m68k/060sp/dist/fpsp.s                   |  4 ++--
 sys/arch/mips/mips/locore.S                       |  6 +++---
 sys/arch/newsmips/dev/scsi_1185.c                 |  6 +++---
 sys/arch/powerpc/ibm4xx/dev/pcicreg.h             |  6 +++---
 sys/arch/powerpc/powerpc/ofwreal.S                |  4 ++--
 sys/arch/sgimips/sgimips/arcemu.h                 |  4 ++--
 sys/arch/sun3/include/mon.h                       |  4 ++--
 sys/arch/sun68k/include/mon.h                     |  4 ++--
 sys/dev/gpio/gpiopps.c                            |  6 +++---
 sys/dev/ic/lancereg.h                             |  4 ++--
 sys/dev/pci/if_iwmreg.h                           |  4 ++--
 sys/netinet/sctp_structs.h                        |  4 ++--
 tests/dev/audio/audiotest.c                       |  6 +++---
 18 files changed, 42 insertions(+), 42 deletions(-)

diffs (truncated from 380 to 300 lines):

diff -r 379bca19fa00 -r 3408b3e5442a external/bsd/ipf/dist/ip_fil.c
--- a/external/bsd/ipf/dist/ip_fil.c    Sat Jun 24 05:26:01 2023 +0000
+++ b/external/bsd/ipf/dist/ip_fil.c    Sat Jun 24 05:27:13 2023 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: ip_fil.c,v 1.5 2018/02/04 08:19:42 mrg Exp $   */
+/*     $NetBSD: ip_fil.c,v 1.6 2023/06/24 05:31:51 msaitoh Exp $       */
 
 /*
  * Copyright (C) 2012 by Darren Reed.
@@ -610,7 +610,7 @@ ipf_newisn(fin)
 
 /* ------------------------------------------------------------------------ */
 /* Function:    ipf_nextipid                                                */
-/* Returns:     int - 0 == success, -1 == error (packet should be droppped) */
+/* Returns:     int - 0 == success, -1 == error (packet should be dropped)  */
 /* Parameters:  fin(I) - pointer to packet information                      */
 /*                                                                          */
 /* Returns the next IPv4 ID to use for this packet.                         */
diff -r 379bca19fa00 -r 3408b3e5442a sys/arch/amd64/amd64/locore.S
--- a/sys/arch/amd64/amd64/locore.S     Sat Jun 24 05:26:01 2023 +0000
+++ b/sys/arch/amd64/amd64/locore.S     Sat Jun 24 05:27:13 2023 +0000
@@ -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
diff -r 379bca19fa00 -r 3408b3e5442a sys/arch/amiga/dev/if_esreg.h
--- a/sys/arch/amiga/dev/if_esreg.h     Sat Jun 24 05:26:01 2023 +0000
+++ b/sys/arch/amiga/dev/if_esreg.h     Sat Jun 24 05:27:13 2023 +0000
@@ -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
diff -r 379bca19fa00 -r 3408b3e5442a sys/arch/atari/dev/fd.c
--- a/sys/arch/atari/dev/fd.c   Sat Jun 24 05:26:01 2023 +0000
+++ b/sys/arch/atari/dev/fd.c   Sat Jun 24 05:27:13 2023 +0000
@@ -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
diff -r 379bca19fa00 -r 3408b3e5442a sys/arch/i386/stand/efiboot/bootx64/startprog64.S
--- a/sys/arch/i386/stand/efiboot/bootx64/startprog64.S Sat Jun 24 05:26:01 2023 +0000
+++ b/sys/arch/i386/stand/efiboot/bootx64/startprog64.S Sat Jun 24 05:27:13 2023 +0000
@@ -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 @@ WITH THE USE OR PERFORMANCE OF THIS SOFT
        .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:
diff -r 379bca19fa00 -r 3408b3e5442a sys/arch/m68k/060sp/dist/fpsp.s
--- a/sys/arch/m68k/060sp/dist/fpsp.s   Sat Jun 24 05:26:01 2023 +0000
+++ b/sys/arch/m68k/060sp/dist/fpsp.s   Sat Jun 24 05:27:13 2023 +0000
@@ -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
diff -r 379bca19fa00 -r 3408b3e5442a sys/arch/mips/mips/locore.S
--- a/sys/arch/mips/mips/locore.S       Sat Jun 24 05:26:01 2023 +0000
+++ b/sys/arch/mips/mips/locore.S       Sat Jun 24 05:27:13 2023 +0000
@@ -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)
  *
diff -r 379bca19fa00 -r 3408b3e5442a sys/arch/newsmips/dev/scsi_1185.c
--- a/sys/arch/newsmips/dev/scsi_1185.c Sat Jun 24 05:26:01 2023 +0000
+++ b/sys/arch/newsmips/dev/scsi_1185.c Sat Jun 24 05:27:13 2023 +0000
@@ -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)
diff -r 379bca19fa00 -r 3408b3e5442a sys/arch/powerpc/ibm4xx/dev/pcicreg.h
--- a/sys/arch/powerpc/ibm4xx/dev/pcicreg.h     Sat Jun 24 05:26:01 2023 +0000
+++ b/sys/arch/powerpc/ibm4xx/dev/pcicreg.h     Sat Jun 24 05:27:13 2023 +0000
@@ -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 */
diff -r 379bca19fa00 -r 3408b3e5442a sys/arch/powerpc/powerpc/ofwreal.S
--- a/sys/arch/powerpc/powerpc/ofwreal.S        Sat Jun 24 05:26:01 2023 +0000
+++ b/sys/arch/powerpc/powerpc/ofwreal.S        Sat Jun 24 05:27:13 2023 +0000
@@ -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 @@ 1:
        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
diff -r 379bca19fa00 -r 3408b3e5442a sys/arch/sgimips/sgimips/arcemu.h
--- a/sys/arch/sgimips/sgimips/arcemu.h Sat Jun 24 05:26:01 2023 +0000
+++ b/sys/arch/sgimips/sgimips/arcemu.h Sat Jun 24 05:27:13 2023 +0000
@@ -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);
 
diff -r 379bca19fa00 -r 3408b3e5442a sys/arch/sun3/include/mon.h
--- a/sys/arch/sun3/include/mon.h       Sat Jun 24 05:26:01 2023 +0000
+++ b/sys/arch/sun3/include/mon.h       Sat Jun 24 05:27:13 2023 +0000
@@ -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
diff -r 379bca19fa00 -r 3408b3e5442a sys/arch/sun68k/include/mon.h
--- a/sys/arch/sun68k/include/mon.h     Sat Jun 24 05:26:01 2023 +0000
+++ b/sys/arch/sun68k/include/mon.h     Sat Jun 24 05:27:13 2023 +0000
@@ -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
diff -r 379bca19fa00 -r 3408b3e5442a sys/dev/gpio/gpiopps.c
--- a/sys/dev/gpio/gpiopps.c    Sat Jun 24 05:26:01 2023 +0000
+++ b/sys/dev/gpio/gpiopps.c    Sat Jun 24 05:27:13 2023 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: gpiopps.c,v 1.4 2022/03/31 19:30:16 pgoyette Exp $ */
+/* $NetBSD: gpiopps.c,v 1.5 2023/06/24 05:34:59 msaitoh Exp $ */
 
 /*
  * Copyright (c) 2016 Brad Spencer <brad%anduin.eldar.org@localhost>
@@ -26,7 +26,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: gpiopps.c,v 1.4 2022/03/31 19:30:16 pgoyette Exp $");
+__KERNEL_RCSID(0, "$NetBSD: gpiopps.c,v 1.5 2023/06/24 05:34:59 msaitoh Exp $");
 
 /*
  * GPIO interface to the pps subsystem for ntp support.
@@ -132,7 +132,7 @@ gpiopps_attach(device_t parent, device_t
        sc->sc_gpio = ga->ga_gpio;
        sc->sc_map.pm_map = sc->_map;
 
-       /* Determine our pin configuation. */
+       /* Determine our pin configuration. */
        npins = gpio_npins(mask);
        if (npins == 0) {
                npins = 1;
diff -r 379bca19fa00 -r 3408b3e5442a sys/dev/ic/lancereg.h
--- a/sys/dev/ic/lancereg.h     Sat Jun 24 05:26:01 2023 +0000



Home | Main Index | Thread Index | Old Index