Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch Rework includes and include <uvm/uvm_extern.h> for ...



details:   https://anonhg.NetBSD.org/src/rev/a975377d837e
branches:  trunk
changeset: 781342:a975377d837e
user:      matt <matt%NetBSD.org@localhost>
date:      Sat Sep 01 12:15:39 2012 +0000

description:
Rework includes and include <uvm/uvm_extern.h> for pmap.h

diffstat:

 sys/arch/arm/arm32/intr.c       |  12 ++++++------
 sys/arch/shark/shark/autoconf.c |  10 +++++++---
 2 files changed, 13 insertions(+), 9 deletions(-)

diffs (66 lines):

diff -r 5bf0bbb2143e -r a975377d837e sys/arch/arm/arm32/intr.c
--- a/sys/arch/arm/arm32/intr.c Sat Sep 01 12:05:09 2012 +0000
+++ b/sys/arch/arm/arm32/intr.c Sat Sep 01 12:15:39 2012 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: intr.c,v 1.33 2012/07/27 05:36:09 matt Exp $   */
+/*     $NetBSD: intr.c,v 1.34 2012/09/01 12:15:39 matt Exp $   */
 
 /*
  * Copyright (c) 1994-1998 Mark Brinicombe.
@@ -36,16 +36,16 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: intr.c,v 1.33 2012/07/27 05:36:09 matt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: intr.c,v 1.34 2012/09/01 12:15:39 matt Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
+#include <sys/conf.h>
+#include <sys/cpu.h>
+#include <sys/intr.h>
 #include <sys/syslog.h>
-#include <sys/malloc.h>
-#include <sys/conf.h>
 
-#include <machine/intr.h>
-#include <machine/cpu.h>
+#include <uvm/uvm_extern.h>
 
 #include <arm/arm32/machdep.h>
  
diff -r 5bf0bbb2143e -r a975377d837e sys/arch/shark/shark/autoconf.c
--- a/sys/arch/shark/shark/autoconf.c   Sat Sep 01 12:05:09 2012 +0000
+++ b/sys/arch/shark/shark/autoconf.c   Sat Sep 01 12:15:39 2012 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: autoconf.c,v 1.18 2012/07/29 18:05:46 mlelstv Exp $    */
+/*     $NetBSD: autoconf.c,v 1.19 2012/09/01 12:15:39 matt Exp $       */
 
 /*
  * Copyright (c) 1994-1998 Mark Brinicombe.
@@ -43,7 +43,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: autoconf.c,v 1.18 2012/07/29 18:05:46 mlelstv Exp $");
+__KERNEL_RCSID(0, "$NetBSD: autoconf.c,v 1.19 2012/09/01 12:15:39 matt Exp $");
 
 #include "opt_md.h"
 
@@ -53,11 +53,15 @@
 #include <sys/disklabel.h>
 #include <sys/device.h>
 #include <sys/conf.h>
+#include <sys/intr.h>
 #include <sys/kernel.h>
 #include <sys/malloc.h>
+
+#include <uvm/uvm_extern.h>
+
 #include <arm/arm32/machdep.h>
+
 #include <machine/bootconfig.h>
-#include <machine/intr.h>
 #include <machine/irqhandler.h>
 
 #include "isa.h"



Home | Main Index | Thread Index | Old Index