Source-Changes-HG archive

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

[src/trunk]: src/sys/arch Correct a few comment typos that have propagated th...



details:   https://anonhg.NetBSD.org/src/rev/acc3dd4157cb
branches:  trunk
changeset: 569988:acc3dd4157cb
user:      rumble <rumble%NetBSD.org@localhost>
date:      Thu Sep 16 03:57:10 2004 +0000

description:
Correct a few comment typos that have propagated through the
tree.

diffstat:

 sys/arch/cobalt/cobalt/bus.c                 |  8 ++++----
 sys/arch/hpcmips/hpcmips/bus_dma.c           |  8 ++++----
 sys/arch/m68k/m68k/bus_dma.c                 |  8 ++++----
 sys/arch/mvme68k/mvme68k/bus_dma.c           |  8 ++++----
 sys/arch/newsmips/newsmips/bus.c             |  8 ++++----
 sys/arch/playstation2/playstation2/bus_dma.c |  8 ++++----
 sys/arch/pmax/pmax/bus_dma.c                 |  8 ++++----
 sys/arch/sgimips/sgimips/bus.c               |  8 ++++----
 sys/arch/sh5/sh5/bus_dma.c                   |  8 ++++----
 9 files changed, 36 insertions(+), 36 deletions(-)

diffs (297 lines):

diff -r e48b0eed4ed5 -r acc3dd4157cb sys/arch/cobalt/cobalt/bus.c
--- a/sys/arch/cobalt/cobalt/bus.c      Wed Sep 15 19:45:17 2004 +0000
+++ b/sys/arch/cobalt/cobalt/bus.c      Thu Sep 16 03:57:10 2004 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: bus.c,v 1.17 2003/07/15 01:29:22 lukem Exp $   */
+/*     $NetBSD: bus.c,v 1.18 2004/09/16 03:57:10 rumble Exp $  */
 
 /*
  * Copyright (c) 1998 The NetBSD Foundation, Inc.
@@ -38,7 +38,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: bus.c,v 1.17 2003/07/15 01:29:22 lukem Exp $");
+__KERNEL_RCSID(0, "$NetBSD: bus.c,v 1.18 2004/09/16 03:57:10 rumble Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -157,12 +157,12 @@
        size_t mapsize;
 
        /*
-        * Allcoate and initialize the DMA map.  The end of the map
+        * Allocate and initialize the DMA map.  The end of the map
         * is a variable-sized array of segments, so we allocate enough
         * room for them in one shot.
         *
         * Note we don't preserve the WAITOK or NOWAIT flags.  Preservation
-        * of ALLOCNOW notifes others that we've reserved these resources,
+        * of ALLOCNOW notifies others that we've reserved these resources,
         * and they are not to be freed.
         *
         * The bus_dmamap_t includes one bus_dma_segment_t, hence
diff -r e48b0eed4ed5 -r acc3dd4157cb sys/arch/hpcmips/hpcmips/bus_dma.c
--- a/sys/arch/hpcmips/hpcmips/bus_dma.c        Wed Sep 15 19:45:17 2004 +0000
+++ b/sys/arch/hpcmips/hpcmips/bus_dma.c        Thu Sep 16 03:57:10 2004 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: bus_dma.c,v 1.20 2003/07/15 02:29:31 lukem Exp $       */
+/*     $NetBSD: bus_dma.c,v 1.21 2004/09/16 03:57:10 rumble Exp $      */
 
 /*-
  * Copyright (c) 1997, 1998 The NetBSD Foundation, Inc.
@@ -38,7 +38,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: bus_dma.c,v 1.20 2003/07/15 02:29:31 lukem Exp $");
+__KERNEL_RCSID(0, "$NetBSD: bus_dma.c,v 1.21 2004/09/16 03:57:10 rumble Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -94,12 +94,12 @@
        size_t mapsize;
 
        /*
-        * Allcoate and initialize the DMA map.  The end of the map
+        * Allocate and initialize the DMA map.  The end of the map
         * has two variable-sized array of segments, so we allocate enough
         * room for them in one shot.
         *
         * Note we don't preserve the WAITOK or NOWAIT flags.  Preservation
-        * of ALLOCNOW notifes others that we've reserved these resources,
+        * of ALLOCNOW notifies others that we've reserved these resources,
         * and they are not to be freed.
         */
        mapsize = sizeof(struct bus_dmamap_hpcmips) +
diff -r e48b0eed4ed5 -r acc3dd4157cb sys/arch/m68k/m68k/bus_dma.c
--- a/sys/arch/m68k/m68k/bus_dma.c      Wed Sep 15 19:45:17 2004 +0000
+++ b/sys/arch/m68k/m68k/bus_dma.c      Thu Sep 16 03:57:10 2004 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: bus_dma.c,v 1.10 2004/05/16 15:44:10 wiz Exp $ */
+/* $NetBSD: bus_dma.c,v 1.11 2004/09/16 03:57:10 rumble Exp $ */
 
 /*
  * This file was taken from from alpha/common/bus_dma.c
@@ -46,7 +46,7 @@
 
 #include <sys/cdefs.h>                 /* RCS ID & Copyright macro defns */
 
-__KERNEL_RCSID(0, "$NetBSD: bus_dma.c,v 1.10 2004/05/16 15:44:10 wiz Exp $");
+__KERNEL_RCSID(0, "$NetBSD: bus_dma.c,v 1.11 2004/09/16 03:57:10 rumble Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -87,12 +87,12 @@
        size_t mapsize;
 
        /*
-        * Allcoate and initialize the DMA map.  The end of the map
+        * Allocate and initialize the DMA map.  The end of the map
         * is a variable-sized array of segments, so we allocate enough
         * room for them in one shot.
         *
         * Note we don't preserve the WAITOK or NOWAIT flags.  Preservation
-        * of ALLOCNOW notifes others that we've reserved these resources,
+        * of ALLOCNOW notifies others that we've reserved these resources,
         * and they are not to be freed.
         *
         * The bus_dmamap_t includes one bus_dma_segment_t, hence
diff -r e48b0eed4ed5 -r acc3dd4157cb sys/arch/mvme68k/mvme68k/bus_dma.c
--- a/sys/arch/mvme68k/mvme68k/bus_dma.c        Wed Sep 15 19:45:17 2004 +0000
+++ b/sys/arch/mvme68k/mvme68k/bus_dma.c        Thu Sep 16 03:57:10 2004 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: bus_dma.c,v 1.24 2004/05/16 15:44:10 wiz Exp $     */
+/* $NetBSD: bus_dma.c,v 1.25 2004/09/16 03:57:10 rumble Exp $  */
 
 /*
  * This file was taken from from next68k/dev/bus_dma.c, which was originally
@@ -46,7 +46,7 @@
 
 #include <sys/cdefs.h>                 /* RCS ID & Copyright macro defns */
 
-__KERNEL_RCSID(0, "$NetBSD: bus_dma.c,v 1.24 2004/05/16 15:44:10 wiz Exp $");
+__KERNEL_RCSID(0, "$NetBSD: bus_dma.c,v 1.25 2004/09/16 03:57:10 rumble Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -90,12 +90,12 @@
        size_t mapsize;
 
        /*
-        * Allcoate and initialize the DMA map.  The end of the map
+        * Allocate and initialize the DMA map.  The end of the map
         * is a variable-sized array of segments, so we allocate enough
         * room for them in one shot.
         *
         * Note we don't preserve the WAITOK or NOWAIT flags.  Preservation
-        * of ALLOCNOW notifes others that we've reserved these resources,
+        * of ALLOCNOW notifies others that we've reserved these resources,
         * and they are not to be freed.
         *
         * The bus_dmamap_t includes one bus_dma_segment_t, hence
diff -r e48b0eed4ed5 -r acc3dd4157cb sys/arch/newsmips/newsmips/bus.c
--- a/sys/arch/newsmips/newsmips/bus.c  Wed Sep 15 19:45:17 2004 +0000
+++ b/sys/arch/newsmips/newsmips/bus.c  Thu Sep 16 03:57:10 2004 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: bus.c,v 1.15 2003/07/15 02:59:30 lukem Exp $   */
+/*     $NetBSD: bus.c,v 1.16 2004/09/16 03:57:10 rumble Exp $  */
 
 /*
  * Copyright (c) 1998 The NetBSD Foundation, Inc.
@@ -38,7 +38,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: bus.c,v 1.15 2003/07/15 02:59:30 lukem Exp $");
+__KERNEL_RCSID(0, "$NetBSD: bus.c,v 1.16 2004/09/16 03:57:10 rumble Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -169,12 +169,12 @@
        size_t mapsize;
 
        /*
-        * Allcoate and initialize the DMA map.  The end of the map
+        * Allocate and initialize the DMA map.  The end of the map
         * is a variable-sized array of segments, so we allocate enough
         * room for them in one shot.
         *
         * Note we don't preserve the WAITOK or NOWAIT flags.  Preservation
-        * of ALLOCNOW notifes others that we've reserved these resources,
+        * of ALLOCNOW notifies others that we've reserved these resources,
         * and they are not to be freed.
         *
         * The bus_dmamap_t includes one bus_dma_segment_t, hence
diff -r e48b0eed4ed5 -r acc3dd4157cb sys/arch/playstation2/playstation2/bus_dma.c
--- a/sys/arch/playstation2/playstation2/bus_dma.c      Wed Sep 15 19:45:17 2004 +0000
+++ b/sys/arch/playstation2/playstation2/bus_dma.c      Thu Sep 16 03:57:10 2004 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: bus_dma.c,v 1.7 2003/07/15 02:54:37 lukem Exp $        */
+/*     $NetBSD: bus_dma.c,v 1.8 2004/09/16 03:57:10 rumble Exp $       */
 
 /*
  * Copyright (c) 1998 The NetBSD Foundation, Inc.
@@ -38,7 +38,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: bus_dma.c,v 1.7 2003/07/15 02:54:37 lukem Exp $");
+__KERNEL_RCSID(0, "$NetBSD: bus_dma.c,v 1.8 2004/09/16 03:57:10 rumble Exp $");
 
 #include <sys/param.h>
 #include <sys/malloc.h>
@@ -87,12 +87,12 @@
        size_t mapsize;
 
        /*
-        * Allcoate and initialize the DMA map.  The end of the map
+        * Allocate and initialize the DMA map.  The end of the map
         * is a variable-sized array of segments, so we allocate enough
         * room for them in one shot.
         *
         * Note we don't preserve the WAITOK or NOWAIT flags.  Preservation
-        * of ALLOCNOW notifes others that we've reserved these resources,
+        * of ALLOCNOW notifies others that we've reserved these resources,
         * and they are not to be freed.
         *
         * The bus_dmamap_t includes one bus_dma_segment_t, hence
diff -r e48b0eed4ed5 -r acc3dd4157cb sys/arch/pmax/pmax/bus_dma.c
--- a/sys/arch/pmax/pmax/bus_dma.c      Wed Sep 15 19:45:17 2004 +0000
+++ b/sys/arch/pmax/pmax/bus_dma.c      Thu Sep 16 03:57:10 2004 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: bus_dma.c,v 1.38 2003/07/15 02:54:40 lukem Exp $       */
+/*     $NetBSD: bus_dma.c,v 1.39 2004/09/16 03:57:10 rumble Exp $      */
 
 /*-
  * Copyright (c) 1997, 1998 The NetBSD Foundation, Inc.
@@ -38,7 +38,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: bus_dma.c,v 1.38 2003/07/15 02:54:40 lukem Exp $");
+__KERNEL_RCSID(0, "$NetBSD: bus_dma.c,v 1.39 2004/09/16 03:57:10 rumble Exp $");
 
 #include "opt_cputype.h"
 
@@ -111,12 +111,12 @@
        size_t mapsize;
 
        /*
-        * Allcoate and initialize the DMA map.  The end of the map
+        * Allocate and initialize the DMA map.  The end of the map
         * is a variable-sized array of segments, so we allocate enough
         * room for them in one shot.
         *
         * Note we don't preserve the WAITOK or NOWAIT flags.  Preservation
-        * of ALLOCNOW notifes others that we've reserved these resources,
+        * of ALLOCNOW notifies others that we've reserved these resources,
         * and they are not to be freed.
         *
         * The bus_dmamap_t includes one bus_dma_segment_t, hence
diff -r e48b0eed4ed5 -r acc3dd4157cb sys/arch/sgimips/sgimips/bus.c
--- a/sys/arch/sgimips/sgimips/bus.c    Wed Sep 15 19:45:17 2004 +0000
+++ b/sys/arch/sgimips/sgimips/bus.c    Thu Sep 16 03:57:10 2004 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: bus.c,v 1.30 2004/04/13 08:12:03 sekiya Exp $  */
+/*     $NetBSD: bus.c,v 1.31 2004/09/16 03:57:10 rumble Exp $  */
 
 /*
  * Copyright (c) 1998 The NetBSD Foundation, Inc.
@@ -38,7 +38,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: bus.c,v 1.30 2004/04/13 08:12:03 sekiya Exp $");
+__KERNEL_RCSID(0, "$NetBSD: bus.c,v 1.31 2004/09/16 03:57:10 rumble Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -403,12 +403,12 @@
        size_t mapsize;
 
        /*
-        * Allcoate and initialize the DMA map.  The end of the map
+        * Allocate and initialize the DMA map.  The end of the map
         * is a variable-sized array of segments, so we allocate enough
         * room for them in one shot.
         *
         * Note we don't preserve the WAITOK or NOWAIT flags.  Preservation
-        * of ALLOCNOW notifes others that we've reserved these resources,
+        * of ALLOCNOW notifies others that we've reserved these resources,
         * and they are not to be freed.
         *
         * The bus_dmamap_t includes one bus_dma_segment_t, hence
diff -r e48b0eed4ed5 -r acc3dd4157cb sys/arch/sh5/sh5/bus_dma.c
--- a/sys/arch/sh5/sh5/bus_dma.c        Wed Sep 15 19:45:17 2004 +0000
+++ b/sys/arch/sh5/sh5/bus_dma.c        Thu Sep 16 03:57:10 2004 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: bus_dma.c,v 1.11 2004/05/16 15:44:10 wiz Exp $ */
+/*     $NetBSD: bus_dma.c,v 1.12 2004/09/16 03:57:11 rumble Exp $      */
 
 /*-
  * Copyright (c) 1997, 1998 The NetBSD Foundation, Inc.
@@ -39,7 +39,7 @@
 
 #include <sys/cdefs.h>                 /* RCS ID & Copyright macro defns */
 
-__KERNEL_RCSID(0, "$NetBSD: bus_dma.c,v 1.11 2004/05/16 15:44:10 wiz Exp $");
+__KERNEL_RCSID(0, "$NetBSD: bus_dma.c,v 1.12 2004/09/16 03:57:11 rumble Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -117,12 +117,12 @@
        size_t mapsize;
 
        /*
-        * Allcoate and initialize the DMA map.  The end of the map
+        * Allocate and initialize the DMA map.  The end of the map
         * is a variable-sized array of segments, so we allocate enough
         * room for them in one shot.
         *
         * Note we don't preserve the WAITOK or NOWAIT flags.  Preservation
-        * of ALLOCNOW notifes others that we've reserved these resources,
+        * of ALLOCNOW notifies others that we've reserved these resources,
         * and they are not to be freed.
         *
         * The bus_dmamap_t includes one bus_dma_segment_t, hence



Home | Main Index | Thread Index | Old Index