Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/arch/x68k Explicitly include opt_m680x0.h.
details: https://anonhg.NetBSD.org/src/rev/62a76d2e5b92
branches: trunk
changeset: 485085:62a76d2e5b92
user: minoura <minoura%NetBSD.org@localhost>
date: Tue Apr 18 21:06:06 2000 +0000
description:
Explicitly include opt_m680x0.h.
diffstat:
sys/arch/x68k/dev/fd.c | 3 ++-
sys/arch/x68k/dev/intio_dmac.c | 4 +++-
sys/arch/x68k/x68k/machdep.c | 3 ++-
sys/arch/x68k/x68k/pmap.c | 3 ++-
sys/arch/x68k/x68k/pmap_bootstrap.c | 8 +++++---
sys/arch/x68k/x68k/sys_machdep.c | 3 ++-
sys/arch/x68k/x68k/trap.c | 3 ++-
7 files changed, 18 insertions(+), 9 deletions(-)
diffs (130 lines):
diff -r e0fac7447888 -r 62a76d2e5b92 sys/arch/x68k/dev/fd.c
--- a/sys/arch/x68k/dev/fd.c Tue Apr 18 21:04:51 2000 +0000
+++ b/sys/arch/x68k/dev/fd.c Tue Apr 18 21:06:06 2000 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: fd.c,v 1.33 2000/04/07 16:58:56 thorpej Exp $ */
+/* $NetBSD: fd.c,v 1.34 2000/04/18 21:06:06 minoura Exp $ */
/*-
* Copyright (c) 1998 The NetBSD Foundation, Inc.
@@ -76,6 +76,7 @@
#include "rnd.h"
#include "opt_ddb.h"
+#include "opt_m680x0.h"
#include <sys/param.h>
#include <sys/systm.h>
diff -r e0fac7447888 -r 62a76d2e5b92 sys/arch/x68k/dev/intio_dmac.c
--- a/sys/arch/x68k/dev/intio_dmac.c Tue Apr 18 21:04:51 2000 +0000
+++ b/sys/arch/x68k/dev/intio_dmac.c Tue Apr 18 21:06:06 2000 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: intio_dmac.c,v 1.5 1999/07/08 18:11:02 thorpej Exp $ */
+/* $NetBSD: intio_dmac.c,v 1.6 2000/04/18 21:06:06 minoura Exp $ */
/*-
* Copyright (c) 1997, 1998 The NetBSD Foundation, Inc.
@@ -40,6 +40,8 @@
* Hitachi HD63450 (= Motorola MC68450) DMAC driver for x68k.
*/
+#include "opt_m680x0.h"
+
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/device.h>
diff -r e0fac7447888 -r 62a76d2e5b92 sys/arch/x68k/x68k/machdep.c
--- a/sys/arch/x68k/x68k/machdep.c Tue Apr 18 21:04:51 2000 +0000
+++ b/sys/arch/x68k/x68k/machdep.c Tue Apr 18 21:06:06 2000 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: machdep.c,v 1.79 2000/03/28 23:57:31 simonb Exp $ */
+/* $NetBSD: machdep.c,v 1.80 2000/04/18 21:06:08 minoura Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@@ -50,6 +50,7 @@
#include "opt_ns.h"
#include "opt_compat_hpux.h"
#include "opt_compat_netbsd.h"
+#include "opt_m680x0.h"
#include "opt_fpuemulate.h"
#include "opt_m060sp.h"
#include "opt_panicbutton.h"
diff -r e0fac7447888 -r 62a76d2e5b92 sys/arch/x68k/x68k/pmap.c
--- a/sys/arch/x68k/x68k/pmap.c Tue Apr 18 21:04:51 2000 +0000
+++ b/sys/arch/x68k/x68k/pmap.c Tue Apr 18 21:06:06 2000 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: pmap.c,v 1.48 2000/03/26 20:42:41 kleink Exp $ */
+/* $NetBSD: pmap.c,v 1.49 2000/04/18 21:06:12 minoura Exp $ */
/*-
* Copyright (c) 1999 The NetBSD Foundation, Inc.
@@ -129,6 +129,7 @@
* and to when physical maps must be made correct.
*/
+#include "opt_m680x0.h"
#include "opt_compat_hpux.h"
#include <sys/param.h>
diff -r e0fac7447888 -r 62a76d2e5b92 sys/arch/x68k/x68k/pmap_bootstrap.c
--- a/sys/arch/x68k/x68k/pmap_bootstrap.c Tue Apr 18 21:04:51 2000 +0000
+++ b/sys/arch/x68k/x68k/pmap_bootstrap.c Tue Apr 18 21:06:06 2000 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: pmap_bootstrap.c,v 1.17 1999/03/23 04:18:50 minoura Exp $ */
+/* $NetBSD: pmap_bootstrap.c,v 1.18 2000/04/18 21:06:12 minoura Exp $ */
/*
* Copyright (c) 1991, 1993
@@ -39,13 +39,15 @@
* @(#)pmap_bootstrap.c 8.1 (Berkeley) 6/10/93
*/
+#include "opt_m680x0.h"
+
#include <sys/param.h>
+#include <vm/vm.h>
#include <machine/pte.h>
-#include <x68k/x68k/iodevice.h>
#include <machine/vmparam.h>
#include <machine/cpu.h>
+#include <arch/x68k/x68k/iodevice.h>
-#include <vm/vm.h>
#define RELOC(v, t) *((t*)((caddr_t)&(v) + firstpa))
#define RELOCA(a, t) ((t)((caddr_t)(a) + firstpa))
diff -r e0fac7447888 -r 62a76d2e5b92 sys/arch/x68k/x68k/sys_machdep.c
--- a/sys/arch/x68k/x68k/sys_machdep.c Tue Apr 18 21:04:51 2000 +0000
+++ b/sys/arch/x68k/x68k/sys_machdep.c Tue Apr 18 21:06:06 2000 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: sys_machdep.c,v 1.19 1999/11/28 20:31:00 is Exp $ */
+/* $NetBSD: sys_machdep.c,v 1.20 2000/04/18 21:06:12 minoura Exp $ */
/*
* Copyright (c) 1982, 1986, 1993
@@ -35,6 +35,7 @@
* @(#)sys_machdep.c 8.2 (Berkeley) 1/13/94
*/
+#include "opt_m680x0.h"
#include "opt_compat_hpux.h"
#include <sys/param.h>
diff -r e0fac7447888 -r 62a76d2e5b92 sys/arch/x68k/x68k/trap.c
--- a/sys/arch/x68k/x68k/trap.c Tue Apr 18 21:04:51 2000 +0000
+++ b/sys/arch/x68k/x68k/trap.c Tue Apr 18 21:06:06 2000 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: trap.c,v 1.36 1999/12/05 11:56:37 ragge Exp $ */
+/* $NetBSD: trap.c,v 1.37 2000/04/18 21:06:12 minoura Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@@ -49,6 +49,7 @@
#include "opt_compat_sunos.h"
#include "opt_compat_hpux.h"
#include "opt_compat_linux.h"
+#include "opt_m680x0.h"
#include "opt_fpuemulate.h"
#include <sys/param.h>
Home |
Main Index |
Thread Index |
Old Index