diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2005-04-27 14:07:39 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2005-04-27 14:07:39 +0000 |
commit | 0c43c061c7fad965acfbcf489e4ac871090720fb (patch) | |
tree | 4ad140fe9793c166712090df0f90a39b1c09188d /sys/arch/m88k | |
parent | b0165a268dc55b71e91bb2ca4234eb68b71fcc94 (diff) |
Always include <uvm/uvm_extern.h> before <machine/cmmu.h>.
Diffstat (limited to 'sys/arch/m88k')
-rw-r--r-- | sys/arch/m88k/m88k/cmmu.c | 5 | ||||
-rw-r--r-- | sys/arch/m88k/m88k/m8820x_machdep.c | 9 |
2 files changed, 8 insertions, 6 deletions
diff --git a/sys/arch/m88k/m88k/cmmu.c b/sys/arch/m88k/m88k/cmmu.c index 30f2d82dde3..b38e19e90c4 100644 --- a/sys/arch/m88k/m88k/cmmu.c +++ b/sys/arch/m88k/m88k/cmmu.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cmmu.c,v 1.2 2004/08/06 13:23:49 miod Exp $ */ +/* $OpenBSD: cmmu.c,v 1.3 2005/04/27 14:07:38 miod Exp $ */ /* * Copyright (c) 1998 Steve Murphree, Jr. * Copyright (c) 1996 Nivas Madhur @@ -60,6 +60,9 @@ #include <sys/param.h> #include <sys/types.h> #include <sys/simplelock.h> + +#include <uvm/uvm_extern.h> + #include <machine/cmmu.h> #include <machine/cpu_number.h> diff --git a/sys/arch/m88k/m88k/m8820x_machdep.c b/sys/arch/m88k/m88k/m8820x_machdep.c index 2b0c7b7c3f6..a1f7047f951 100644 --- a/sys/arch/m88k/m88k/m8820x_machdep.c +++ b/sys/arch/m88k/m88k/m8820x_machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: m8820x_machdep.c,v 1.3 2004/08/08 21:19:18 miod Exp $ */ +/* $OpenBSD: m8820x_machdep.c,v 1.4 2005/04/27 14:07:38 miod Exp $ */ /* * Copyright (c) 2004, Miodrag Vallat. * @@ -85,15 +85,14 @@ #include <sys/systm.h> #include <sys/simplelock.h> +#include <uvm/uvm_extern.h> + #include <machine/asm_macro.h> +#include <machine/cmmu.h> #include <machine/cpu_number.h> #include <machine/locore.h> - -#include <machine/cmmu.h> #include <machine/m8820x.h> -#include <uvm/uvm_extern.h> - #ifdef DDB #include <ddb/db_output.h> /* db_printf() */ #endif |