summaryrefslogtreecommitdiffstats
path: root/sys/powerpc/aim/machdep.c
diff options
context:
space:
mode:
authornjl <njl@FreeBSD.org>2005-02-06 01:55:08 +0000
committernjl <njl@FreeBSD.org>2005-02-06 01:55:08 +0000
commit2958530007b5b44425d9a8edf3d34f7732fdfcba (patch)
tree34fe2fd5a4f6db57d38793f608bedf1c01fdd0d9 /sys/powerpc/aim/machdep.c
parentd433625cac405808a9c7b80587e5ff1fc0698c71 (diff)
downloadFreeBSD-src-2958530007b5b44425d9a8edf3d34f7732fdfcba.zip
FreeBSD-src-2958530007b5b44425d9a8edf3d34f7732fdfcba.tar.gz
Finish the job of sorting all includes and fix the build by including
malloc.h before proc.h on sparc64. Noticed by das@ Compiled on: alpha, amd64, i386, pc98, sparc64
Diffstat (limited to 'sys/powerpc/aim/machdep.c')
-rw-r--r--sys/powerpc/aim/machdep.c50
1 files changed, 27 insertions, 23 deletions
diff --git a/sys/powerpc/aim/machdep.c b/sys/powerpc/aim/machdep.c
index 5f225a6..f9512b9 100644
--- a/sys/powerpc/aim/machdep.c
+++ b/sys/powerpc/aim/machdep.c
@@ -63,60 +63,64 @@ __FBSDID("$FreeBSD$");
#include "opt_msgbuf.h"
#include <sys/param.h>
+#include <sys/proc.h>
#include <sys/systm.h>
#include <sys/bio.h>
#include <sys/buf.h>
#include <sys/bus.h>
+#include <sys/cons.h>
#include <sys/cpu.h>
#include <sys/eventhandler.h>
-#include <sys/kdb.h>
+#include <sys/exec.h>
#include <sys/imgact.h>
-#include <sys/sysproto.h>
-#include <sys/lock.h>
-#include <sys/mutex.h>
-#include <sys/ktr.h>
-#include <sys/signalvar.h>
+#include <sys/kdb.h>
#include <sys/kernel.h>
-#include <sys/proc.h>
+#include <sys/ktr.h>
+#include <sys/linker.h>
+#include <sys/lock.h>
#include <sys/malloc.h>
-#include <sys/reboot.h>
#include <sys/mbuf.h>
-#include <sys/vmmeter.h>
#include <sys/msgbuf.h>
-#include <sys/exec.h>
+#include <sys/mutex.h>
+#include <sys/ptrace.h>
+#include <sys/reboot.h>
+#include <sys/signalvar.h>
#include <sys/sysctl.h>
-#include <sys/uio.h>
-#include <sys/linker.h>
-#include <sys/cons.h>
-#include <sys/ucontext.h>
#include <sys/sysent.h>
+#include <sys/sysproto.h>
+#include <sys/ucontext.h>
+#include <sys/uio.h>
+#include <sys/vmmeter.h>
+#include <sys/vnode.h>
+
#include <net/netisr.h>
+
#include <vm/vm.h>
+#include <vm/vm_extern.h>
#include <vm/vm_kern.h>
#include <vm/vm_page.h>
#include <vm/vm_map.h>
-#include <vm/vm_extern.h>
#include <vm/vm_object.h>
#include <vm/vm_pager.h>
-#include <sys/ptrace.h>
+
#include <machine/bat.h>
#include <machine/clock.h>
#include <machine/cpu.h>
+#include <machine/elf.h>
+#include <machine/fpu.h>
#include <machine/md_var.h>
#include <machine/metadata.h>
#include <machine/pcb.h>
-#include <machine/reg.h>
-#include <machine/fpu.h>
-#include <machine/vmparam.h>
-#include <machine/elf.h>
-#include <machine/trap.h>
#include <machine/powerpc.h>
-#include <dev/ofw/openfirm.h>
-#include <sys/vnode.h>
+#include <machine/reg.h>
#include <machine/sigframe.h>
+#include <machine/trap.h>
+#include <machine/vmparam.h>
#include <ddb/ddb.h>
+#include <dev/ofw/openfirm.h>
+
#ifdef DDB
extern vm_offset_t ksym_start, ksym_end;
#endif
OpenPOWER on IntegriCloud