Source-Changes-HG archive

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

[src/trunk]: src/sys/arch Correct copypaste comment grammar.



details:   https://anonhg.NetBSD.org/src/rev/f53398461301
branches:  trunk
changeset: 1027716:f53398461301
user:      skrll <skrll%NetBSD.org@localhost>
date:      Fri Dec 17 06:28:20 2021 +0000

description:
Correct copypaste comment grammar.

diffstat:

 sys/arch/alpha/isa/isadma_bounce.c    |  6 +++---
 sys/arch/arc/isa/isadma_bounce.c      |  6 +++---
 sys/arch/atari/isa/isa_dma.c          |  6 +++---
 sys/arch/evbmips/isa/isadma_bounce.c  |  6 +++---
 sys/arch/powerpc/isa/isadma_machdep.c |  6 +++---
 sys/arch/x68k/dev/intio.c             |  6 +++---
 sys/arch/x86/isa/isa_machdep.c        |  6 +++---
 7 files changed, 21 insertions(+), 21 deletions(-)

diffs (189 lines):

diff -r 563a7b2ad2d8 -r f53398461301 sys/arch/alpha/isa/isadma_bounce.c
--- a/sys/arch/alpha/isa/isadma_bounce.c        Fri Dec 17 06:26:13 2021 +0000
+++ b/sys/arch/alpha/isa/isadma_bounce.c        Fri Dec 17 06:28:20 2021 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: isadma_bounce.c,v 1.15 2021/05/07 16:58:33 thorpej Exp $ */
+/* $NetBSD: isadma_bounce.c,v 1.16 2021/12/17 06:28:20 skrll Exp $ */
 
 /*-
  * Copyright (c) 1996, 1997, 1998, 2000 The NetBSD Foundation, Inc.
@@ -32,7 +32,7 @@
 
 #include <sys/cdefs.h>                 /* RCS ID & Copyright macro defns */
 
-__KERNEL_RCSID(0, "$NetBSD: isadma_bounce.c,v 1.15 2021/05/07 16:58:33 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: isadma_bounce.c,v 1.16 2021/12/17 06:28:20 skrll Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -112,7 +112,7 @@
         * in memory below the 16M boundary.  On DMA reads,
         * DMA happens to the bounce buffers, and is copied into
         * the caller's buffer.  On writes, data is copied into
-        * but bounce buffer, and the DMA happens from those
+        * the bounce buffer, and the DMA happens from those
         * pages.  To software using the DMA mapping interface,
         * this looks simply like a data cache.
         *
diff -r 563a7b2ad2d8 -r f53398461301 sys/arch/arc/isa/isadma_bounce.c
--- a/sys/arch/arc/isa/isadma_bounce.c  Fri Dec 17 06:26:13 2021 +0000
+++ b/sys/arch/arc/isa/isadma_bounce.c  Fri Dec 17 06:28:20 2021 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: isadma_bounce.c,v 1.17 2021/12/17 06:26:13 skrll Exp $ */
+/* $NetBSD: isadma_bounce.c,v 1.18 2021/12/17 06:28:20 skrll Exp $ */
 /* NetBSD: isadma_bounce.c,v 1.2 2000/06/01 05:49:36 thorpej Exp  */
 
 /*-
@@ -33,7 +33,7 @@
 
 #include <sys/cdefs.h>                 /* RCS ID & Copyright macro defns */
 
-__KERNEL_RCSID(0, "$NetBSD: isadma_bounce.c,v 1.17 2021/12/17 06:26:13 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: isadma_bounce.c,v 1.18 2021/12/17 06:28:20 skrll Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -130,7 +130,7 @@
         * in memory below the 16M boundary.  On DMA reads,
         * DMA happens to the bounce buffers, and is copied into
         * the caller's buffer.  On writes, data is copied into
-        * but bounce buffer, and the DMA happens from those
+        * the bounce buffer, and the DMA happens from those
         * pages.  To software using the DMA mapping interface,
         * this looks simply like a data cache.
         *
diff -r 563a7b2ad2d8 -r f53398461301 sys/arch/atari/isa/isa_dma.c
--- a/sys/arch/atari/isa/isa_dma.c      Fri Dec 17 06:26:13 2021 +0000
+++ b/sys/arch/atari/isa/isa_dma.c      Fri Dec 17 06:28:20 2021 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: isa_dma.c,v 1.14 2021/12/17 06:26:13 skrll Exp $       */
+/*     $NetBSD: isa_dma.c,v 1.15 2021/12/17 06:28:20 skrll Exp $       */
 
 #define ISA_DMA_STATS
 
@@ -33,7 +33,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: isa_dma.c,v 1.14 2021/12/17 06:26:13 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: isa_dma.c,v 1.15 2021/12/17 06:28:20 skrll Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -163,7 +163,7 @@
         * in memory below the 16M boundary.  On DMA reads,
         * DMA happens to the bounce buffers, and is copied into
         * the caller's buffer.  On writes, data is copied into
-        * but bounce buffer, and the DMA happens from those
+        * the bounce buffer, and the DMA happens from those
         * pages.  To software using the DMA mapping interface,
         * this looks simply like a data cache.
         *
diff -r 563a7b2ad2d8 -r f53398461301 sys/arch/evbmips/isa/isadma_bounce.c
--- a/sys/arch/evbmips/isa/isadma_bounce.c      Fri Dec 17 06:26:13 2021 +0000
+++ b/sys/arch/evbmips/isa/isadma_bounce.c      Fri Dec 17 06:28:20 2021 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: isadma_bounce.c,v 1.13 2021/12/17 06:26:13 skrll Exp $ */
+/*     $NetBSD: isadma_bounce.c,v 1.14 2021/12/17 06:28:20 skrll Exp $ */
 
 /*-
  * Copyright (c) 1996, 1997, 1998, 2000, 2001 The NetBSD Foundation, Inc.
@@ -31,7 +31,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: isadma_bounce.c,v 1.13 2021/12/17 06:26:13 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: isadma_bounce.c,v 1.14 2021/12/17 06:28:20 skrll Exp $");
 
 #define _MIPS_BUS_DMA_PRIVATE
 
@@ -86,7 +86,7 @@
         * in memory below the 16M boundary.  On DMA reads,
         * DMA happens to the bounce buffers, and is copied into
         * the caller's buffer.  On writes, data is copied into
-        * but bounce buffer, and the DMA happens from those
+        * the bounce buffer, and the DMA happens from those
         * pages.  To software using the DMA mapping interface,
         * this looks simply like a data cache.
         *
diff -r 563a7b2ad2d8 -r f53398461301 sys/arch/powerpc/isa/isadma_machdep.c
--- a/sys/arch/powerpc/isa/isadma_machdep.c     Fri Dec 17 06:26:13 2021 +0000
+++ b/sys/arch/powerpc/isa/isadma_machdep.c     Fri Dec 17 06:28:20 2021 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: isadma_machdep.c,v 1.12 2021/12/17 06:26:13 skrll Exp $        */
+/*     $NetBSD: isadma_machdep.c,v 1.13 2021/12/17 06:28:20 skrll Exp $        */
 
 /*-
  * Copyright (c) 1996, 1997, 1998 The NetBSD Foundation, Inc.
@@ -31,7 +31,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: isadma_machdep.c,v 1.12 2021/12/17 06:26:13 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: isadma_machdep.c,v 1.13 2021/12/17 06:28:20 skrll Exp $");
 
 #define ISA_DMA_STATS
 
@@ -193,7 +193,7 @@
         * in memory below the 16M boundary.  On DMA reads,
         * DMA happens to the bounce buffers, and is copied into
         * the caller's buffer.  On writes, data is copied into
-        * but bounce buffer, and the DMA happens from those
+        * the bounce buffer, and the DMA happens from those
         * pages.  To software using the DMA mapping interface,
         * this looks simply like a data cache.
         *
diff -r 563a7b2ad2d8 -r f53398461301 sys/arch/x68k/dev/intio.c
--- a/sys/arch/x68k/dev/intio.c Fri Dec 17 06:26:13 2021 +0000
+++ b/sys/arch/x68k/dev/intio.c Fri Dec 17 06:28:20 2021 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: intio.c,v 1.50 2021/12/17 06:26:13 skrll Exp $ */
+/*     $NetBSD: intio.c,v 1.51 2021/12/17 06:28:20 skrll Exp $ */
 
 /*-
  * Copyright (c) 1998 The NetBSD Foundation, Inc.
@@ -31,7 +31,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: intio.c,v 1.50 2021/12/17 06:26:13 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: intio.c,v 1.51 2021/12/17 06:28:20 skrll Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -420,7 +420,7 @@
         * in memory below the 16M boundary.  On DMA reads,
         * DMA happens to the bounce buffers, and is copied into
         * the caller's buffer.  On writes, data is copied into
-        * but bounce buffer, and the DMA happens from those
+        * the bounce buffer, and the DMA happens from those
         * pages.  To software using the DMA mapping interface,
         * this looks simply like a data cache.
         *
diff -r 563a7b2ad2d8 -r f53398461301 sys/arch/x86/isa/isa_machdep.c
--- a/sys/arch/x86/isa/isa_machdep.c    Fri Dec 17 06:26:13 2021 +0000
+++ b/sys/arch/x86/isa/isa_machdep.c    Fri Dec 17 06:28:20 2021 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: isa_machdep.c,v 1.50 2021/12/17 06:26:14 skrll Exp $   */
+/*     $NetBSD: isa_machdep.c,v 1.51 2021/12/17 06:28:20 skrll Exp $   */
 
 /*-
  * Copyright (c) 1996, 1997, 1998 The NetBSD Foundation, Inc.
@@ -65,7 +65,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: isa_machdep.c,v 1.50 2021/12/17 06:26:14 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: isa_machdep.c,v 1.51 2021/12/17 06:28:20 skrll Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -310,7 +310,7 @@
  * in memory below the 16M boundary.  On DMA reads,
  * DMA happens to the bounce buffers, and is copied into
  * the caller's buffer.  On writes, data is copied into
- * but bounce buffer, and the DMA happens from those
+ * the bounce buffer, and the DMA happens from those
  * pages.  To software using the DMA mapping interface,
  * this looks simply like a data cache.
  *



Home | Main Index | Thread Index | Old Index