diff options
author | Dale S. Rahn <rahnds@cvs.openbsd.org> | 2000-06-15 03:11:02 +0000 |
---|---|---|
committer | Dale S. Rahn <rahnds@cvs.openbsd.org> | 2000-06-15 03:11:02 +0000 |
commit | 91c9198627a51381295bad0ec7ad113c8e5bfb3d (patch) | |
tree | 6eb703f923cb4de615470fcbd74b9b55762735d6 /sys/arch/powerpc/mac | |
parent | fdf26b38120df78326c1a5d7f0e3331008d1e704 (diff) |
UVM compatibility changes, UVM still not working, but can build.
Diffstat (limited to 'sys/arch/powerpc/mac')
-rw-r--r-- | sys/arch/powerpc/mac/macintr.c | 7 | ||||
-rw-r--r-- | sys/arch/powerpc/mac/openpic.c | 7 |
2 files changed, 12 insertions, 2 deletions
diff --git a/sys/arch/powerpc/mac/macintr.c b/sys/arch/powerpc/mac/macintr.c index 4e7ca1ed9d7..099017076c3 100644 --- a/sys/arch/powerpc/mac/macintr.c +++ b/sys/arch/powerpc/mac/macintr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: macintr.c,v 1.3 2000/03/31 05:14:37 rahnds Exp $ */ +/* $OpenBSD: macintr.c,v 1.4 2000/06/15 03:11:01 rahnds Exp $ */ /*- * Copyright (c) 1995 Per Fogelstrom @@ -46,6 +46,11 @@ #include <sys/mbuf.h> #include <sys/socket.h> #include <sys/systm.h> +#ifdef UVM +#include <vm/vm.h> +#include <vm/vm_kern.h> +#include <uvm/uvm.h> +#endif #include <machine/autoconf.h> #include <machine/intr.h> diff --git a/sys/arch/powerpc/mac/openpic.c b/sys/arch/powerpc/mac/openpic.c index 594731a3893..099648c8af7 100644 --- a/sys/arch/powerpc/mac/openpic.c +++ b/sys/arch/powerpc/mac/openpic.c @@ -1,4 +1,4 @@ -/* $OpenBSD: openpic.c,v 1.2 2000/03/31 04:20:20 rahnds Exp $ */ +/* $OpenBSD: openpic.c,v 1.3 2000/06/15 03:11:01 rahnds Exp $ */ /*- * Copyright (c) 1995 Per Fogelstrom @@ -46,6 +46,11 @@ #include <sys/mbuf.h> #include <sys/socket.h> #include <sys/systm.h> +#ifdef UVM +#include <vm/vm.h> +#include <vm/vm_kern.h> +#include <uvm/uvm.h> +#endif #include <machine/autoconf.h> #include <machine/intr.h> |