diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2010-06-27 13:28:48 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2010-06-27 13:28:48 +0000 |
commit | 40753e96f717bbcff3bcdd8dce37d0f1d4a61cd8 (patch) | |
tree | 358c21bc074f6d4bc6a7c3e3f3c94f04100508ce /sys/arch/sparc | |
parent | caea54f975623f976113b9c61796d93332d93d28 (diff) |
If you include <uvm/uvm.h>, you do not need to include any other <uvm/uvm_foo.h>
Diffstat (limited to 'sys/arch/sparc')
-rw-r--r-- | sys/arch/sparc/sparc/machdep.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/sys/arch/sparc/sparc/machdep.c b/sys/arch/sparc/sparc/machdep.c index d1543fe59e8..4ed5029fe22 100644 --- a/sys/arch/sparc/sparc/machdep.c +++ b/sys/arch/sparc/sparc/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.125 2010/06/27 03:03:48 thib Exp $ */ +/* $OpenBSD: machdep.c,v 1.126 2010/06/27 13:28:47 miod Exp $ */ /* $NetBSD: machdep.c,v 1.85 1997/09/12 08:55:02 pk Exp $ */ /* @@ -62,8 +62,7 @@ #include <sys/sysctl.h> #include <sys/extent.h> -#include <uvm/uvm_extern.h> -#include <uvm/uvm_swap.h> +#include <uvm/uvm.h> #include <dev/rndvar.h> @@ -81,8 +80,6 @@ #include <sparc/sparc/vaddrs.h> #include <sparc/sparc/cpuvar.h> -#include <uvm/uvm.h> - #ifdef SUN4M #include "power.h" #if NPOWER > 0 |