summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormiod <miod@openbsd.org>2001-03-08 22:26:00 +0000
committermiod <miod@openbsd.org>2001-03-08 22:26:00 +0000
commit90b41f94259884a85a4f364dec3eb0328ee6f88c (patch)
tree55ac3dbed50dcb6eb70b793a05ef83b34a4f0a55
parentDefine ff1() as a one-liner assembly inline, rather than a function in (diff)
downloadwireguard-openbsd-90b41f94259884a85a4f364dec3eb0328ee6f88c.tar.xz
wireguard-openbsd-90b41f94259884a85a4f364dec3eb0328ee6f88c.zip
Include <machine/asm_macro.h>, reorder include files list.
-rw-r--r--sys/arch/mvme88k/mvme88k/pmap.c18
1 files changed, 10 insertions, 8 deletions
diff --git a/sys/arch/mvme88k/mvme88k/pmap.c b/sys/arch/mvme88k/mvme88k/pmap.c
index 19c7ec2b081..02f98998049 100644
--- a/sys/arch/mvme88k/mvme88k/pmap.c
+++ b/sys/arch/mvme88k/mvme88k/pmap.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pmap.c,v 1.21 2001/03/07 23:52:33 miod Exp $ */
+/* $OpenBSD: pmap.c,v 1.22 2001/03/08 22:26:00 miod Exp $ */
/*
* Copyright (c) 1996 Nivas Madhur
* All rights reserved.
@@ -51,22 +51,24 @@
/*#define DEBUG 1*/
#include <sys/types.h>
-#include <machine/board.h>
#include <sys/param.h>
-#include <machine/m882xx.h> /* CMMU stuff */
+#include <sys/simplelock.h>
+#include <sys/proc.h>
+#include <sys/malloc.h>
+#include <sys/msgbuf.h>
+#include <sys/user.h>
+
#include <vm/vm.h>
#include <vm/vm_kern.h> /* vm/vm_kern.h */
#if defined(UVM)
#include <uvm/uvm.h>
#endif
-#include <sys/simplelock.h>
-#include <sys/proc.h>
-#include <sys/malloc.h>
-#include <sys/msgbuf.h>
-#include <sys/user.h>
+#include <machine/asm_macro.h>
#include <machine/assert.h>
+#include <machine/board.h>
#include <machine/cpu_number.h>
+#include <machine/m882xx.h> /* CMMU stuff */
#include <machine/pmap_table.h>
#include <mvme88k/dev/pcctworeg.h>