Source-Changes-HG archive

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

[src/trunk]: src/sys/arch Tidy up common comments. (Yes, too many dup code...)



details:   https://anonhg.NetBSD.org/src/rev/d370a1ea7fb6
branches:  trunk
changeset: 760327:d370a1ea7fb6
user:      tsutsui <tsutsui%NetBSD.org@localhost>
date:      Sun Jan 02 18:48:04 2011 +0000

description:
Tidy up common comments.  (Yes, too many dup code...)

diffstat:

 sys/arch/amiga/amiga/amiga_init.c         |  10 +++++-----
 sys/arch/atari/atari/atari_init.c         |  10 +++++-----
 sys/arch/cesfic/cesfic/pmap_bootstrap.c   |  10 +++++-----
 sys/arch/hp300/hp300/pmap_bootstrap.c     |  10 +++++-----
 sys/arch/luna68k/luna68k/pmap_bootstrap.c |  10 +++++-----
 sys/arch/mac68k/mac68k/pmap_bootstrap.c   |  10 +++++-----
 sys/arch/mvme68k/mvme68k/pmap_bootstrap.c |  10 +++++-----
 sys/arch/news68k/news68k/pmap_bootstrap.c |  10 +++++-----
 sys/arch/next68k/next68k/pmap_bootstrap.c |  10 +++++-----
 sys/arch/x68k/x68k/pmap_bootstrap.c       |  10 +++++-----
 10 files changed, 50 insertions(+), 50 deletions(-)

diffs (truncated from 310 to 300 lines):

diff -r 0749005997d4 -r d370a1ea7fb6 sys/arch/amiga/amiga/amiga_init.c
--- a/sys/arch/amiga/amiga/amiga_init.c Sun Jan 02 18:39:11 2011 +0000
+++ b/sys/arch/amiga/amiga/amiga_init.c Sun Jan 02 18:48:04 2011 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: amiga_init.c,v 1.120 2010/12/20 00:25:25 matt Exp $    */
+/*     $NetBSD: amiga_init.c,v 1.121 2011/01/02 18:48:04 tsutsui Exp $ */
 
 /*
  * Copyright (c) 1994 Michael L. Hitch
@@ -37,7 +37,7 @@
 #include "opt_m68k_arch.h"
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: amiga_init.c,v 1.120 2010/12/20 00:25:25 matt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: amiga_init.c,v 1.121 2011/01/02 18:48:04 tsutsui Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -547,9 +547,9 @@
 
 #if defined(M68040) || defined(M68060)
        /*
-        * map the kernel segment table cache invalidated for
-        * these machines (for the 68040 not strictly necessary, but
-        * recommended by Motorola; for the 68060 mandatory)
+        * Map the kernel segment table cache invalidated for 68040/68060.
+        * (for the 68040 not strictly necessary, but recommended by Motorola;
+        *  for the 68060 mandatory)
         */
        if (RELOC(mmutype, int) == MMU_68040) {
 
diff -r 0749005997d4 -r d370a1ea7fb6 sys/arch/atari/atari/atari_init.c
--- a/sys/arch/atari/atari/atari_init.c Sun Jan 02 18:39:11 2011 +0000
+++ b/sys/arch/atari/atari/atari_init.c Sun Jan 02 18:48:04 2011 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: atari_init.c,v 1.94 2010/06/06 04:50:06 mrg Exp $      */
+/*     $NetBSD: atari_init.c,v 1.95 2011/01/02 18:48:05 tsutsui Exp $  */
 
 /*
  * Copyright (c) 1995 Leo Weppelman
@@ -33,7 +33,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: atari_init.c,v 1.94 2010/06/06 04:50:06 mrg Exp $");
+__KERNEL_RCSID(0, "$NetBSD: atari_init.c,v 1.95 2011/01/02 18:48:05 tsutsui Exp $");
 
 #include "opt_ddb.h"
 #include "opt_mbtype.h"
@@ -374,9 +374,9 @@
 
 #if defined(M68040) || defined(M68060)
        /*
-        * Map the kernel segment table cache invalidated for 
-        * these machines (for the 68040 not strictly necessary, but
-        * recommended by Motorola; for the 68060 mandatory)
+        * Map the kernel segment table cache invalidated for 68040/68060.
+        * (for the 68040 not strictly necessary, but recommended by Motorola;
+        *  for the 68060 mandatory)
         */
        if (mmutype == MMU_68040) {
 
diff -r 0749005997d4 -r d370a1ea7fb6 sys/arch/cesfic/cesfic/pmap_bootstrap.c
--- a/sys/arch/cesfic/cesfic/pmap_bootstrap.c   Sun Jan 02 18:39:11 2011 +0000
+++ b/sys/arch/cesfic/cesfic/pmap_bootstrap.c   Sun Jan 02 18:48:04 2011 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pmap_bootstrap.c,v 1.30 2011/01/02 18:39:11 tsutsui Exp $      */
+/*     $NetBSD: pmap_bootstrap.c,v 1.31 2011/01/02 18:48:05 tsutsui Exp $      */
 
 /* 
  * Copyright (c) 1991, 1993
@@ -36,7 +36,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: pmap_bootstrap.c,v 1.30 2011/01/02 18:39:11 tsutsui Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pmap_bootstrap.c,v 1.31 2011/01/02 18:48:05 tsutsui Exp $");
 
 #include <sys/param.h>
 #include <uvm/uvm_extern.h>
@@ -359,9 +359,9 @@
                protopte += PAGE_SIZE;
        }
        /*
-        * map the kernel segment table cache invalidated for
-        * these machines (for the 68040 not strictly necessary, but
-        * recommended by Motorola; for the 68060 mandatory)
+        * Map the kernel segment table cache invalidated for 68040/68060.
+        * (for the 68040 not strictly necessary, but recommended by Motorola;
+        *  for the 68060 mandatory)
         */
        epte = (pt_entry_t *)kptpa;
        epte = &epte[m68k_btop(KERNBASE + nextpa - firstpa)];
diff -r 0749005997d4 -r d370a1ea7fb6 sys/arch/hp300/hp300/pmap_bootstrap.c
--- a/sys/arch/hp300/hp300/pmap_bootstrap.c     Sun Jan 02 18:39:11 2011 +0000
+++ b/sys/arch/hp300/hp300/pmap_bootstrap.c     Sun Jan 02 18:48:04 2011 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pmap_bootstrap.c,v 1.50 2011/01/02 07:03:46 tsutsui Exp $      */
+/*     $NetBSD: pmap_bootstrap.c,v 1.51 2011/01/02 18:48:05 tsutsui Exp $      */
 
 /*
  * Copyright (c) 1991, 1993
@@ -36,7 +36,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: pmap_bootstrap.c,v 1.50 2011/01/02 07:03:46 tsutsui Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pmap_bootstrap.c,v 1.51 2011/01/02 18:48:05 tsutsui Exp $");
 
 #include <sys/param.h>
 #include <uvm/uvm_extern.h>
@@ -379,9 +379,9 @@
                protopte += PAGE_SIZE;
        }
        /*
-        * map the kernel segment table cache invalidated for
-        * these machines (for the 68040 not strictly necessary, but
-        * recommended by Motorola; for the 68060 mandatory)
+        * Map the kernel segment table cache invalidated for 68040/68060.
+        * (for the 68040 not strictly necessary, but recommended by Motorola;
+        *  for the 68060 mandatory)
         */
        epte = (pt_entry_t *)kptpa;
        epte = &epte[m68k_btop(nextpa - firstpa)];
diff -r 0749005997d4 -r d370a1ea7fb6 sys/arch/luna68k/luna68k/pmap_bootstrap.c
--- a/sys/arch/luna68k/luna68k/pmap_bootstrap.c Sun Jan 02 18:39:11 2011 +0000
+++ b/sys/arch/luna68k/luna68k/pmap_bootstrap.c Sun Jan 02 18:48:04 2011 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pmap_bootstrap.c,v 1.31 2011/01/02 18:39:11 tsutsui Exp $      */
+/*     $NetBSD: pmap_bootstrap.c,v 1.32 2011/01/02 18:48:06 tsutsui Exp $      */
 
 /* 
  * Copyright (c) 1991, 1993
@@ -36,7 +36,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: pmap_bootstrap.c,v 1.31 2011/01/02 18:39:11 tsutsui Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pmap_bootstrap.c,v 1.32 2011/01/02 18:48:06 tsutsui Exp $");
 
 #include "opt_m68k_arch.h"
 
@@ -337,9 +337,9 @@
                protopte += PAGE_SIZE;
        }
        /*
-        * map the kernel segment table cache invalidated for
-        * these machines (for the 68040 not strictly necessary, but
-        * recommended by Motorola; for the 68060 mandatory)
+        * Map the kernel segment table cache invalidated for 68040/68060.
+        * (for the 68040 not strictly necessary, but recommended by Motorola;
+        *  for the 68060 mandatory)
         */
        epte = (pt_entry_t *)kptpa;
        epte = &epte[m68k_btop(nextpa - firstpa)];
diff -r 0749005997d4 -r d370a1ea7fb6 sys/arch/mac68k/mac68k/pmap_bootstrap.c
--- a/sys/arch/mac68k/mac68k/pmap_bootstrap.c   Sun Jan 02 18:39:11 2011 +0000
+++ b/sys/arch/mac68k/mac68k/pmap_bootstrap.c   Sun Jan 02 18:48:04 2011 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pmap_bootstrap.c,v 1.91 2011/01/02 18:16:59 tsutsui Exp $      */
+/*     $NetBSD: pmap_bootstrap.c,v 1.92 2011/01/02 18:48:06 tsutsui Exp $      */
 
 /* 
  * Copyright (c) 1991, 1993
@@ -36,7 +36,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: pmap_bootstrap.c,v 1.91 2011/01/02 18:16:59 tsutsui Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pmap_bootstrap.c,v 1.92 2011/01/02 18:48:06 tsutsui Exp $");
 
 #include "opt_ddb.h"
 #include "opt_kgdb.h"
@@ -386,9 +386,9 @@
                protopte += PAGE_SIZE;
        }
        /*
-        * map the kernel segment table cache invalidated for
-        * these machines (for the 68040 not strictly necessary, but
-        * recommended by Motorola; for the 68060 mandatory)
+        * Map the kernel segment table cache invalidated for 68040/68060.
+        * (for the 68040 not strictly necessary, but recommended by Motorola;
+        *  for the 68060 mandatory)
         */
        epte = PA2VA(kptpa, pt_entry_t *);
        epte = &epte[m68k_btop(nextpa - firstpa)];
diff -r 0749005997d4 -r d370a1ea7fb6 sys/arch/mvme68k/mvme68k/pmap_bootstrap.c
--- a/sys/arch/mvme68k/mvme68k/pmap_bootstrap.c Sun Jan 02 18:39:11 2011 +0000
+++ b/sys/arch/mvme68k/mvme68k/pmap_bootstrap.c Sun Jan 02 18:48:04 2011 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pmap_bootstrap.c,v 1.47 2011/01/02 07:03:46 tsutsui Exp $      */
+/*     $NetBSD: pmap_bootstrap.c,v 1.48 2011/01/02 18:48:06 tsutsui Exp $      */
 
 /* 
  * Copyright (c) 1991, 1993
@@ -36,7 +36,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: pmap_bootstrap.c,v 1.47 2011/01/02 07:03:46 tsutsui Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pmap_bootstrap.c,v 1.48 2011/01/02 18:48:06 tsutsui Exp $");
 
 #include "opt_m68k_arch.h"
 
@@ -347,9 +347,9 @@
                protopte += PAGE_SIZE;
        }
        /*
-        * map the kernel segment table cache invalidated for
-        * these machines (for the 68040 not strictly necessary, but
-        * recommended by Motorola; for the 68060 mandatory)
+        * Map the kernel segment table cache invalidated for 68040/68060.
+        * (for the 68040 not strictly necessary, but recommended by Motorola;
+        *  for the 68060 mandatory)
         */
        epte = (pt_entry_t *)kptpa;
        epte = &epte[m68k_btop(nextpa - firstpa)];
diff -r 0749005997d4 -r d370a1ea7fb6 sys/arch/news68k/news68k/pmap_bootstrap.c
--- a/sys/arch/news68k/news68k/pmap_bootstrap.c Sun Jan 02 18:39:11 2011 +0000
+++ b/sys/arch/news68k/news68k/pmap_bootstrap.c Sun Jan 02 18:48:04 2011 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pmap_bootstrap.c,v 1.35 2011/01/02 07:03:46 tsutsui Exp $      */
+/*     $NetBSD: pmap_bootstrap.c,v 1.36 2011/01/02 18:48:06 tsutsui Exp $      */
 
 /* 
  * Copyright (c) 1991, 1993
@@ -39,7 +39,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: pmap_bootstrap.c,v 1.35 2011/01/02 07:03:46 tsutsui Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pmap_bootstrap.c,v 1.36 2011/01/02 18:48:06 tsutsui Exp $");
 
 #include "opt_m68k_arch.h"
 
@@ -353,9 +353,9 @@
                protopte += PAGE_SIZE;
        }
        /*
-        * map the kernel segment table cache invalidated for
-        * these machines (for the 68040 not strictly necessary, but
-        * recommended by Motorola; for the 68060 mandatory)
+        * Map the kernel segment table cache invalidated for 68040/68060.
+        * (for the 68040 not strictly necessary, but recommended by Motorola;
+        *  for the 68060 mandatory)
         */
        epte = (pt_entry_t *)kptpa;
        epte = &epte[m68k_btop(nextpa - firstpa)];
diff -r 0749005997d4 -r d370a1ea7fb6 sys/arch/next68k/next68k/pmap_bootstrap.c
--- a/sys/arch/next68k/next68k/pmap_bootstrap.c Sun Jan 02 18:39:11 2011 +0000
+++ b/sys/arch/next68k/next68k/pmap_bootstrap.c Sun Jan 02 18:48:04 2011 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pmap_bootstrap.c,v 1.38 2011/01/02 08:40:55 tsutsui Exp $      */
+/*     $NetBSD: pmap_bootstrap.c,v 1.39 2011/01/02 18:48:07 tsutsui Exp $      */
 
 /*
  * This file was taken from mvme68k/mvme68k/pmap_bootstrap.c
@@ -45,7 +45,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: pmap_bootstrap.c,v 1.38 2011/01/02 08:40:55 tsutsui Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pmap_bootstrap.c,v 1.39 2011/01/02 18:48:07 tsutsui Exp $");
 
 #include "opt_m68k_arch.h"
 
@@ -401,9 +401,9 @@
                protopte += PAGE_SIZE;
        }
        /*
-        * map the kernel segment table cache invalidated for
-        * these machines (for the 68040 not strictly necessary, but
-        * recommended by Motorola; for the 68060 mandatory)
+        * Map the kernel segment table cache invalidated for 68040/68060.
+        * (for the 68040 not strictly necessary, but recommended by Motorola;
+        *  for the 68060 mandatory)
         */
        epte = (pt_entry_t *)kptpa;
        epte = &epte[m68k_btop(nextpa - firstpa)];
diff -r 0749005997d4 -r d370a1ea7fb6 sys/arch/x68k/x68k/pmap_bootstrap.c
--- a/sys/arch/x68k/x68k/pmap_bootstrap.c       Sun Jan 02 18:39:11 2011 +0000
+++ b/sys/arch/x68k/x68k/pmap_bootstrap.c       Sun Jan 02 18:48:04 2011 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pmap_bootstrap.c,v 1.53 2011/01/02 07:03:46 tsutsui Exp $      */
+/*     $NetBSD: pmap_bootstrap.c,v 1.54 2011/01/02 18:48:07 tsutsui Exp $      */
 
 /* 
  * Copyright (c) 1991, 1993
@@ -36,7 +36,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: pmap_bootstrap.c,v 1.53 2011/01/02 07:03:46 tsutsui Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pmap_bootstrap.c,v 1.54 2011/01/02 18:48:07 tsutsui Exp $");
 
 #include "opt_m68k_arch.h"
 
@@ -335,9 +335,9 @@
                protopte += PAGE_SIZE;
        }



Home | Main Index | Thread Index | Old Index