Source-Changes-HG archive

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

[src/trunk]: src s/reseting/resetting/



details:   https://anonhg.NetBSD.org/src/rev/016f58b1587a
branches:  trunk
changeset: 936228:016f58b1587a
user:      msaitoh <msaitoh%NetBSD.org@localhost>
date:      Wed Jul 22 01:24:39 2020 +0000

description:
s/reseting/resetting/

diffstat:

 lib/libpthread/pthread.c                |  6 +++---
 sys/arch/acorn32/podulebus/esc.c        |  6 +++---
 sys/arch/acorn32/podulebus/escvar.h     |  4 ++--
 sys/arch/acorn32/podulebus/sfas.c       |  6 +++---
 sys/arch/acorn32/podulebus/sfasvar.h    |  4 ++--
 sys/arch/arm/omap/omapl1x_timer.c       |  4 ++--
 sys/arch/evbmips/adm5120/machdep.c      |  6 +++---
 sys/arch/evbmips/alchemy/machdep.c      |  6 +++---
 sys/arch/evbmips/atheros/machdep.c      |  6 +++---
 sys/arch/evbmips/ingenic/machdep.c      |  6 +++---
 sys/arch/evbmips/rasoc/machdep.c        |  6 +++---
 sys/arch/ews4800mips/sbd/if_iee_sbdio.c |  6 +++---
 sys/arch/shark/shark/opms.c             |  6 +++---
 sys/dev/ic/ath.c                        |  6 +++---
 sys/dev/ic/atppc.c                      |  6 +++---
 sys/dev/pci/ixgbe/ixgbe_vf.c            |  4 ++--
 sys/net80211/ieee80211_proto.c          |  6 +++---
 usr.bin/tip/aculib/ventel.c             |  6 +++---
 18 files changed, 50 insertions(+), 50 deletions(-)

diffs (truncated from 453 to 300 lines):

diff -r 1022a042bfe8 -r 016f58b1587a lib/libpthread/pthread.c
--- a/lib/libpthread/pthread.c  Tue Jul 21 23:47:50 2020 +0000
+++ b/lib/libpthread/pthread.c  Wed Jul 22 01:24:39 2020 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pthread.c,v 1.177 2020/06/14 21:31:11 ad Exp $ */
+/*     $NetBSD: pthread.c,v 1.178 2020/07/22 01:24:39 msaitoh Exp $    */
 
 /*-
  * Copyright (c) 2001, 2002, 2003, 2006, 2007, 2008, 2020
@@ -31,7 +31,7 @@
  */
 
 #include <sys/cdefs.h>
-__RCSID("$NetBSD: pthread.c,v 1.177 2020/06/14 21:31:11 ad Exp $");
+__RCSID("$NetBSD: pthread.c,v 1.178 2020/07/22 01:24:39 msaitoh Exp $");
 
 #define        __EXPOSE_STACK  1
 
@@ -203,7 +203,7 @@
 
        /*
         * Allocate pthread_keys descriptors before
-        * reseting __uselibcstub because otherwise
+        * resetting __uselibcstub because otherwise
         * malloc() will call pthread_keys_create()
         * while pthread_keys descriptors are not
         * yet allocated.
diff -r 1022a042bfe8 -r 016f58b1587a sys/arch/acorn32/podulebus/esc.c
--- a/sys/arch/acorn32/podulebus/esc.c  Tue Jul 21 23:47:50 2020 +0000
+++ b/sys/arch/acorn32/podulebus/esc.c  Wed Jul 22 01:24:39 2020 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: esc.c,v 1.32 2019/12/27 09:41:48 msaitoh Exp $ */
+/*     $NetBSD: esc.c,v 1.33 2020/07/22 01:24:39 msaitoh Exp $ */
 
 /*
  * Copyright (c) 1990 The Regents of the University of California.
@@ -86,7 +86,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: esc.c,v 1.32 2019/12/27 09:41:48 msaitoh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: esc.c,v 1.33 2020/07/22 01:24:39 msaitoh Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -1102,7 +1102,7 @@
 
                case ESC_NS_RESET:
                        /*
-                        * We were reseting this SCSI-unit. Clean up the
+                        * We were resetting this SCSI-unit. Clean up the
                         * nexus struct.
                         */
                        dev->sc_led(dev, 0);
diff -r 1022a042bfe8 -r 016f58b1587a sys/arch/acorn32/podulebus/escvar.h
--- a/sys/arch/acorn32/podulebus/escvar.h       Tue Jul 21 23:47:50 2020 +0000
+++ b/sys/arch/acorn32/podulebus/escvar.h       Wed Jul 22 01:24:39 2020 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: escvar.h,v 1.8 2012/10/27 17:17:23 chs Exp $ */
+/* $NetBSD: escvar.h,v 1.9 2020/07/22 01:24:39 msaitoh Exp $ */
 
 /*
  * Copyright (c) 1995 Daniel Widenfalk
@@ -130,7 +130,7 @@
 #define ESC_NS_RESELECTED      10      /* We was reselected */
 #define ESC_NS_DONE            11      /* Done. Prephsase to FINISHED */
 #define ESC_NS_FINISHED                12      /* Realy done. Call scsi_done */
-#define ESC_NS_RESET           13      /* We are reseting this unit */
+#define ESC_NS_RESET           13      /* We are resetting this unit */
 
 /* SCSI nexus flags */
 #define ESC_NF_UNIT_BUSY       0x0001  /* Unit is not available */
diff -r 1022a042bfe8 -r 016f58b1587a sys/arch/acorn32/podulebus/sfas.c
--- a/sys/arch/acorn32/podulebus/sfas.c Tue Jul 21 23:47:50 2020 +0000
+++ b/sys/arch/acorn32/podulebus/sfas.c Wed Jul 22 01:24:39 2020 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: sfas.c,v 1.28 2019/12/27 09:41:48 msaitoh Exp $        */
+/*     $NetBSD: sfas.c,v 1.29 2020/07/22 01:24:39 msaitoh Exp $        */
 
 /*
  * Copyright (c) 1990 The Regents of the University of California.
@@ -82,7 +82,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: sfas.c,v 1.28 2019/12/27 09:41:48 msaitoh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: sfas.c,v 1.29 2020/07/22 01:24:39 msaitoh Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -1023,7 +1023,7 @@
 
                case SFAS_NS_RESET:
                        /*
-                        * We were reseting this SCSI-unit. Clean up the
+                        * We were resetting this SCSI-unit. Clean up the
                         * nexus struct.
                         */
                        dev->sc_led(dev, 0);
diff -r 1022a042bfe8 -r 016f58b1587a sys/arch/acorn32/podulebus/sfasvar.h
--- a/sys/arch/acorn32/podulebus/sfasvar.h      Tue Jul 21 23:47:50 2020 +0000
+++ b/sys/arch/acorn32/podulebus/sfasvar.h      Wed Jul 22 01:24:39 2020 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: sfasvar.h,v 1.7 2012/10/27 17:17:24 chs Exp $ */
+/* $NetBSD: sfasvar.h,v 1.8 2020/07/22 01:24:39 msaitoh Exp $ */
 
 /*
  * Copyright (c) 1995 Daniel Widenfalk
@@ -129,7 +129,7 @@
 #define SFAS_NS_RESELECTED     10      /* We was reselected */
 #define SFAS_NS_DONE           11      /* Done. Prephsase to FINISHED */
 #define SFAS_NS_FINISHED       12      /* Realy done. Call scsi_done */
-#define SFAS_NS_RESET          13      /* We are reseting this unit */
+#define SFAS_NS_RESET          13      /* We are resetting this unit */
 
 /* SCSI nexus flags */
 #define SFAS_NF_UNIT_BUSY      0x0001  /* Unit is not available */
diff -r 1022a042bfe8 -r 016f58b1587a sys/arch/arm/omap/omapl1x_timer.c
--- a/sys/arch/arm/omap/omapl1x_timer.c Tue Jul 21 23:47:50 2020 +0000
+++ b/sys/arch/arm/omap/omapl1x_timer.c Wed Jul 22 01:24:39 2020 +0000
@@ -25,7 +25,7 @@
 
 #include <sys/cdefs.h>
 
-__KERNEL_RCSID(0, "$NetBSD: omapl1x_timer.c,v 1.1 2013/10/02 16:48:26 matt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: omapl1x_timer.c,v 1.2 2020/07/22 01:24:39 msaitoh Exp $");
 
 #include "opt_timer.h"
 
@@ -486,7 +486,7 @@
        wdt.wdt_addr = OMAPL1X_WDT_ADDR;
        wdt.wdt_size = OMAPL1X_WDT_SIZE;
 
-       /* Map WDT registers. We want to use it for reseting the chip */
+       /* Map WDT registers. We want to use it for resetting the chip */
        if (bus_space_map(wdt.wdt_iot, wdt.wdt_addr,
                          wdt.wdt_size, 0, &wdt.wdt_ioh)) {
                aprint_error_dev(self, "can't map wdt mem space\n");
diff -r 1022a042bfe8 -r 016f58b1587a sys/arch/evbmips/adm5120/machdep.c
--- a/sys/arch/evbmips/adm5120/machdep.c        Tue Jul 21 23:47:50 2020 +0000
+++ b/sys/arch/evbmips/adm5120/machdep.c        Wed Jul 22 01:24:39 2020 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: machdep.c,v 1.25 2016/12/22 14:47:56 cherry Exp $ */
+/* $NetBSD: machdep.c,v 1.26 2020/07/22 01:24:39 msaitoh Exp $ */
 
 /*-
  * Copyright (c) 2007 Ruslan Ermilov and Vsevolod Lobko.
@@ -70,7 +70,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.25 2016/12/22 14:47:56 cherry Exp $");
+__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.26 2020/07/22 01:24:39 msaitoh Exp $");
 
 #include "opt_ddb.h"
 #include "opt_kgdb.h"
@@ -482,7 +482,7 @@
                cnpollc(0);
        }
 
-       printf("reseting board...\n\n");
+       printf("resetting board...\n\n");
        mips_icache_sync_all();
        mips_dcache_wbinv_all();
        SW_WRITE(SW_SFTRES_REG, 0);                     /* reset */
diff -r 1022a042bfe8 -r 016f58b1587a sys/arch/evbmips/alchemy/machdep.c
--- a/sys/arch/evbmips/alchemy/machdep.c        Tue Jul 21 23:47:50 2020 +0000
+++ b/sys/arch/evbmips/alchemy/machdep.c        Wed Jul 22 01:24:39 2020 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: machdep.c,v 1.56 2016/12/22 14:47:56 cherry Exp $ */
+/* $NetBSD: machdep.c,v 1.57 2020/07/22 01:24:39 msaitoh Exp $ */
 
 /*-
  * Copyright (c) 2006 Itronix Inc.
@@ -70,7 +70,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.56 2016/12/22 14:47:56 cherry Exp $");
+__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.57 2020/07/22 01:24:39 msaitoh Exp $");
 
 #include "opt_ddb.h"
 #include "opt_kgdb.h"
@@ -412,7 +412,7 @@
                cnpollc(0);
        }
 
-       printf("reseting board...\n\n");
+       printf("resetting board...\n\n");
 
        /*
         * Try to use board-specific reset logic, which might involve a better
diff -r 1022a042bfe8 -r 016f58b1587a sys/arch/evbmips/atheros/machdep.c
--- a/sys/arch/evbmips/atheros/machdep.c        Tue Jul 21 23:47:50 2020 +0000
+++ b/sys/arch/evbmips/atheros/machdep.c        Wed Jul 22 01:24:39 2020 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: machdep.c,v 1.31 2016/12/22 14:47:56 cherry Exp $ */
+/* $NetBSD: machdep.c,v 1.32 2020/07/22 01:24:39 msaitoh Exp $ */
 
 /*
  * Copyright (c) 2006 Urbana-Champaign Independent Media Center.
@@ -110,7 +110,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.31 2016/12/22 14:47:56 cherry Exp $");
+__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.32 2020/07/22 01:24:39 msaitoh Exp $");
 
 #include "opt_ddb.h"
 #include "opt_kgdb.h"
@@ -373,7 +373,7 @@
                cnpollc(0);
        }
 
-       printf("reseting board...\n\n");
+       printf("resetting board...\n\n");
        mips_icache_sync_all();
        mips_dcache_wbinv_all();
        atheros_reset();
diff -r 1022a042bfe8 -r 016f58b1587a sys/arch/evbmips/ingenic/machdep.c
--- a/sys/arch/evbmips/ingenic/machdep.c        Tue Jul 21 23:47:50 2020 +0000
+++ b/sys/arch/evbmips/ingenic/machdep.c        Wed Jul 22 01:24:39 2020 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: machdep.c,v 1.14 2017/05/21 06:49:12 skrll Exp $ */
+/*     $NetBSD: machdep.c,v 1.15 2020/07/22 01:24:39 msaitoh Exp $ */
 
 /*-
  * Copyright (c) 2014 Michael Lorenz
@@ -27,7 +27,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.14 2017/05/21 06:49:12 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.15 2020/07/22 01:24:39 msaitoh Exp $");
 
 #include "opt_ddb.h"
 #include "opt_kgdb.h"
@@ -329,7 +329,7 @@
                cnpollc(0);
        }
 
-       printf("reseting board...\n\n");
+       printf("resetting board...\n\n");
        mips_icache_sync_all();
        mips_dcache_wbinv_all();
        ingenic_reset();
diff -r 1022a042bfe8 -r 016f58b1587a sys/arch/evbmips/rasoc/machdep.c
--- a/sys/arch/evbmips/rasoc/machdep.c  Tue Jul 21 23:47:50 2020 +0000
+++ b/sys/arch/evbmips/rasoc/machdep.c  Wed Jul 22 01:24:39 2020 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: machdep.c,v 1.13 2016/12/22 14:47:57 cherry Exp $      */
+/*     $NetBSD: machdep.c,v 1.14 2020/07/22 01:24:39 msaitoh Exp $     */
 
 /*-
  * Copyright (c) 2011 CradlePoint Technology, Inc.
@@ -28,7 +28,7 @@
  */
 
 #include <sys/cdefs.h>                 /* RCS ID & Copyright macro defns */
-__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.13 2016/12/22 14:47:57 cherry Exp $");
+__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.14 2020/07/22 01:24:39 msaitoh Exp $");
 
 #include <sys/param.h>
 #include <sys/boot_flag.h>
@@ -278,7 +278,7 @@
                cnpollc(0);
        }
 
-       printf("reseting board...\n\n");
+       printf("resetting board...\n\n");
        mips_icache_sync_all();
        mips_dcache_wbinv_all();
 
diff -r 1022a042bfe8 -r 016f58b1587a sys/arch/ews4800mips/sbd/if_iee_sbdio.c
--- a/sys/arch/ews4800mips/sbd/if_iee_sbdio.c   Tue Jul 21 23:47:50 2020 +0000
+++ b/sys/arch/ews4800mips/sbd/if_iee_sbdio.c   Wed Jul 22 01:24:39 2020 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: if_iee_sbdio.c,v 1.12 2015/06/23 21:00:23 matt Exp $   */
+/*     $NetBSD: if_iee_sbdio.c,v 1.13 2020/07/22 01:24:40 msaitoh Exp $        */
 
 /*
  * Copyright (c) 2003 Jochen Kunz.
@@ -30,7 +30,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if_iee_sbdio.c,v 1.12 2015/06/23 21:00:23 matt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_iee_sbdio.c,v 1.13 2020/07/22 01:24:40 msaitoh Exp $");
 
 #include <sys/param.h>
 #include <sys/bus.h>
@@ -160,7 +160,7 @@
        cmd = IEE_PORT_SCP | IEE_PHYS_SHMEM(sc->sc_scp_off);
 
        /* Initiate a Hardware reset. */
-       printf("%s: reseting chip... ", device_xname(sc->sc_dev));
+       printf("%s: resetting chip... ", device_xname(sc->sc_dev));
        iee_sbdio_chip_reset(sc);
 
        /* Set SCP address to CU */



Home | Main Index | Thread Index | Old Index