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

This commit is contained in:
tsutsui 2011-01-02 18:48:04 +00:00
parent ba49f620d3
commit 6542895ee1
10 changed files with 50 additions and 50 deletions

View File

@ -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 @@ start_c(id, fphystart, fphysize, cphysize, esym_addr, flags, inh_sync,
#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) {

View File

@ -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 @@ start_c(int id, u_int ttphystart, u_int ttphysize, u_int stphysize,
#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) {

View File

@ -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 @@ pmap_bootstrap(paddr_t nextpa, paddr_t firstpa)
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)];

View File

@ -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 @@ pmap_bootstrap(paddr_t nextpa, paddr_t firstpa)
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)];

View File

@ -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 @@ pmap_bootstrap(paddr_t nextpa, paddr_t firstpa)
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)];

View File

@ -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 @@ pmap_bootstrap(paddr_t nextpa, paddr_t firstpa)
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)];

View File

@ -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 @@ pmap_bootstrap(paddr_t nextpa, paddr_t firstpa)
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)];

View File

@ -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 @@ pmap_bootstrap(paddr_t nextpa, paddr_t firstpa)
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)];

View File

@ -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 @@ pmap_bootstrap(paddr_t nextpa, paddr_t firstpa)
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)];

View File

@ -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 @@ pmap_bootstrap(paddr_t nextpa, paddr_t firstpa)
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)];