diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2001-11-06 19:53:22 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2001-11-06 19:53:22 +0000 |
commit | 1a05584a00bbab0c5d169a8d3af7b22cafbfd92e (patch) | |
tree | 5ddd0ec6d94f69ad3960926e58a87b6d82166c7a /sys/arch/mvme88k/dev | |
parent | ef75d88ca83504eb18013af4622826ef9b5ff28d (diff) |
Replace inclusion of <vm/foo.h> with the correct <uvm/bar.h> when necessary.
(Look ma, I might have broken the tree)
Diffstat (limited to 'sys/arch/mvme88k/dev')
-rw-r--r-- | sys/arch/mvme88k/dev/if_ie.c | 4 | ||||
-rw-r--r-- | sys/arch/mvme88k/dev/if_ve.c | 4 | ||||
-rw-r--r-- | sys/arch/mvme88k/dev/sram.c | 4 | ||||
-rw-r--r-- | sys/arch/mvme88k/dev/ssh.c | 5 | ||||
-rw-r--r-- | sys/arch/mvme88k/dev/sshdma.c | 5 | ||||
-rw-r--r-- | sys/arch/mvme88k/dev/vme.c | 4 |
6 files changed, 12 insertions, 14 deletions
diff --git a/sys/arch/mvme88k/dev/if_ie.c b/sys/arch/mvme88k/dev/if_ie.c index d7be5a50e8a..724c7c67d1f 100644 --- a/sys/arch/mvme88k/dev/if_ie.c +++ b/sys/arch/mvme88k/dev/if_ie.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_ie.c,v 1.14 2001/08/26 02:37:07 miod Exp $ */ +/* $OpenBSD: if_ie.c,v 1.15 2001/11/06 19:53:15 miod Exp $ */ /*- * Copyright (c) 1998 Steve Murphree, Jr. @@ -128,7 +128,7 @@ Mode of operation: #include <netinet/if_ether.h> #endif -#include <vm/vm.h> +#include <uvm/uvm_extern.h> #include <machine/autoconf.h> #include <machine/cpu.h> diff --git a/sys/arch/mvme88k/dev/if_ve.c b/sys/arch/mvme88k/dev/if_ve.c index 7581952c6e8..c075274a554 100644 --- a/sys/arch/mvme88k/dev/if_ve.c +++ b/sys/arch/mvme88k/dev/if_ve.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_ve.c,v 1.10 2001/09/11 20:05:24 miod Exp $ */ +/* $OpenBSD: if_ve.c,v 1.11 2001/11/06 19:53:15 miod Exp $ */ /*- * Copyright (c) 1999 Steve Murphree, Jr. * Copyright (c) 1982, 1992, 1993 @@ -66,7 +66,7 @@ #include <net/bpfdesc.h> #endif -#include <vm/vm.h> +#include <uvm/uvm_extern.h> #include <machine/autoconf.h> #include <machine/cpu.h> diff --git a/sys/arch/mvme88k/dev/sram.c b/sys/arch/mvme88k/dev/sram.c index c8ffa6923bc..5e8bc3b168b 100644 --- a/sys/arch/mvme88k/dev/sram.c +++ b/sys/arch/mvme88k/dev/sram.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sram.c,v 1.3 2001/11/01 12:13:46 art Exp $ */ +/* $OpenBSD: sram.c,v 1.4 2001/11/06 19:53:15 miod Exp $ */ /* * Copyright (c) 1995 Theo de Raadt @@ -43,7 +43,7 @@ #include <machine/cpu.h> #include <machine/autoconf.h> #include <machine/mioctl.h> -#include <vm/vm.h> +#include <uvm/uvm_extern.h> struct sramsoftc { struct device sc_dev; diff --git a/sys/arch/mvme88k/dev/ssh.c b/sys/arch/mvme88k/dev/ssh.c index 6c7b0406028..c89376326e6 100644 --- a/sys/arch/mvme88k/dev/ssh.c +++ b/sys/arch/mvme88k/dev/ssh.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssh.c,v 1.7 2001/09/23 02:50:25 miod Exp $ */ +/* $OpenBSD: ssh.c,v 1.8 2001/11/06 19:53:15 miod Exp $ */ /* * Copyright (c) 1994 Michael L. Hitch @@ -51,9 +51,8 @@ #include <sys/buf.h> #include <sys/malloc.h> -#include <vm/vm.h> -#include <vm/pmap.h> #include <uvm/uvm_extern.h> +#include <uvm/uvm_pmap.h> #include <machine/autoconf.h> #include <machine/mmu.h> diff --git a/sys/arch/mvme88k/dev/sshdma.c b/sys/arch/mvme88k/dev/sshdma.c index 194e1c78d29..8a6b48604ee 100644 --- a/sys/arch/mvme88k/dev/sshdma.c +++ b/sys/arch/mvme88k/dev/sshdma.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sshdma.c,v 1.6 2001/09/23 02:50:25 miod Exp $ */ +/* $OpenBSD: sshdma.c,v 1.7 2001/11/06 19:53:15 miod Exp $ */ /* * Copyright (c) 1996 Nivas Madhur @@ -43,9 +43,8 @@ #include <sys/kernel.h> #include <sys/device.h> -#include <vm/vm.h> -#include <vm/pmap.h> #include <uvm/uvm_extern.h> +#include <uvm/uvm_pmap.h> #include <machine/autoconf.h> #include <machine/board.h> diff --git a/sys/arch/mvme88k/dev/vme.c b/sys/arch/mvme88k/dev/vme.c index 5ecd7e92bf7..84c2cb8bf2f 100644 --- a/sys/arch/mvme88k/dev/vme.c +++ b/sys/arch/mvme88k/dev/vme.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vme.c,v 1.14 2001/10/28 00:57:38 miod Exp $ */ +/* $OpenBSD: vme.c,v 1.15 2001/11/06 19:53:15 miod Exp $ */ /* * Copyright (c) 1999 Steve Murphree, Jr. * Copyright (c) 1995 Theo de Raadt @@ -42,7 +42,7 @@ #include <sys/syslog.h> #include <sys/fcntl.h> #include <sys/device.h> -#include <vm/vm.h> +#include <uvm/uvm_extern.h> #include <machine/autoconf.h> #include <machine/cpu.h> |