Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/arch/evbarm/gumstix Reorder included headers.
details: https://anonhg.NetBSD.org/src/rev/bf315c7a0ae6
branches: trunk
changeset: 752798:bf315c7a0ae6
user: kiyohara <kiyohara%NetBSD.org@localhost>
date: Sun Mar 07 09:29:26 2010 +0000
description:
Reorder included headers.
diffstat:
sys/arch/evbarm/gumstix/gumstix_machdep.c | 41 +++++++++++++++---------------
1 files changed, 20 insertions(+), 21 deletions(-)
diffs (72 lines):
diff -r 39200c6438cf -r bf315c7a0ae6 sys/arch/evbarm/gumstix/gumstix_machdep.c
--- a/sys/arch/evbarm/gumstix/gumstix_machdep.c Sun Mar 07 09:18:51 2010 +0000
+++ b/sys/arch/evbarm/gumstix/gumstix_machdep.c Sun Mar 07 09:29:26 2010 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: gumstix_machdep.c,v 1.25 2010/03/07 09:18:51 kiyohara Exp $ */
+/* $NetBSD: gumstix_machdep.c,v 1.26 2010/03/07 09:29:26 kiyohara Exp $ */
/*
* Copyright (C) 2005, 2006, 2007 WIDE Project and SOUM Corporation.
* All rights reserved.
@@ -147,43 +147,42 @@
#include "md.h"
#include <sys/param.h>
+#include <sys/conf.h>
#include <sys/device.h>
-#include <sys/systm.h>
+#include <sys/exec.h>
#include <sys/kernel.h>
-#include <sys/exec.h>
+#include <sys/ksyms.h>
+#include <sys/msgbuf.h>
#include <sys/proc.h>
-#include <sys/msgbuf.h>
#include <sys/reboot.h>
+#include <sys/systm.h>
#include <sys/termios.h>
-#include <sys/ksyms.h>
+
+#include <machine/bootconfig.h>
+#include <machine/bus.h>
+#include <machine/cpu.h>
+#include <machine/db_machdep.h>
+#include <machine/frame.h>
+
+#include <arm/arm32/machdep.h>
+#include <arm/undefined.h>
+#include <arm/xscale/pxa2x0reg.h>
+#include <arm/xscale/pxa2x0var.h>
+#include <arm/xscale/pxa2x0_gpio.h>
+#include <evbarm/gumstix/gumstixreg.h>
+#include <evbarm/gumstix/gumstixvar.h>
#include <uvm/uvm_extern.h>
-#include <sys/conf.h>
#include <dev/cons.h>
#include <dev/md.h>
-#include <machine/db_machdep.h>
#include <ddb/db_sym.h>
#include <ddb/db_extern.h>
#ifdef KGDB
#include <sys/kgdb.h>
#endif
-#include <machine/bootconfig.h>
-#include <machine/bus.h>
-#include <machine/cpu.h>
-#include <machine/frame.h>
-#include <arm/undefined.h>
-
-#include <arm/arm32/machdep.h>
-
-#include <arm/xscale/pxa2x0reg.h>
-#include <arm/xscale/pxa2x0var.h>
-#include <arm/xscale/pxa2x0_gpio.h>
-#include <evbarm/gumstix/gumstixreg.h>
-#include <evbarm/gumstix/gumstixvar.h>
-
/* Kernel text starts 2MB in from the bottom of the kernel address space. */
#define KERNEL_TEXT_BASE (KERNEL_BASE + 0x00200000)
#ifndef KERNEL_VM_BASE
Home |
Main Index |
Thread Index |
Old Index