Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/acorn26 Fix <arm/locore.h> lossage.



details:   https://anonhg.NetBSD.org/src/rev/b5cbeeee722e
branches:  trunk
changeset: 789415:b5cbeeee722e
user:      matt <matt%NetBSD.org@localhost>
date:      Sun Aug 18 16:08:42 2013 +0000

description:
Fix <arm/locore.h> lossage.

diffstat:

 sys/arch/acorn26/acorn26/autoconf.c    |   8 +++++---
 sys/arch/acorn26/acorn26/except.c      |  10 +++++-----
 sys/arch/acorn26/acorn26/start.c       |   6 +++---
 sys/arch/acorn26/podulebus/podulebus.c |   8 +++++---
 4 files changed, 18 insertions(+), 14 deletions(-)

diffs (118 lines):

diff -r 79b30083a4c8 -r b5cbeeee722e sys/arch/acorn26/acorn26/autoconf.c
--- a/sys/arch/acorn26/acorn26/autoconf.c       Sun Aug 18 16:08:24 2013 +0000
+++ b/sys/arch/acorn26/acorn26/autoconf.c       Sun Aug 18 16:08:42 2013 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: autoconf.c,v 1.9 2012/07/29 18:05:39 mlelstv Exp $ */
+/* $NetBSD: autoconf.c,v 1.10 2013/08/18 16:08:42 matt Exp $ */
 /*-
  * Copyright (c) 1998, 1999 Ben Harris
  * All rights reserved.
@@ -30,14 +30,16 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: autoconf.c,v 1.9 2012/07/29 18:05:39 mlelstv Exp $");
+__KERNEL_RCSID(0, "$NetBSD: autoconf.c,v 1.10 2013/08/18 16:08:42 matt Exp $");
 
 #include <sys/param.h>
 #include <sys/conf.h>
 #include <sys/device.h>
 #include <sys/systm.h>
+#include <sys/intr.h>
 
-#include <machine/intr.h>
+#include <arm/locore.h>
+
 #include <machine/irq.h>
 #include <machine/machdep.h>
 
diff -r 79b30083a4c8 -r b5cbeeee722e sys/arch/acorn26/acorn26/except.c
--- a/sys/arch/acorn26/acorn26/except.c Sun Aug 18 16:08:24 2013 +0000
+++ b/sys/arch/acorn26/acorn26/except.c Sun Aug 18 16:08:42 2013 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: except.c,v 1.29 2012/08/16 17:35:01 matt Exp $ */
+/* $NetBSD: except.c,v 1.30 2013/08/18 16:08:42 matt Exp $ */
 /*-
  * Copyright (c) 1998, 1999, 2000 Ben Harris
  * All rights reserved.
@@ -31,7 +31,7 @@
 
 #include <sys/param.h>
 
-__KERNEL_RCSID(0, "$NetBSD: except.c,v 1.29 2012/08/16 17:35:01 matt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: except.c,v 1.30 2013/08/18 16:08:42 matt Exp $");
 
 #include "opt_ddb.h"
 
@@ -43,12 +43,12 @@
 #include <sys/cpu.h>
 #include <sys/lwp.h>
 #include <sys/proc.h>
+#include <sys/intr.h>
 
 #include <uvm/uvm_extern.h>
 
-#include <arm/armreg.h>
-#include <arm/cpuconf.h>
-#include <machine/intr.h>
+#include <arm/locore.h>
+
 #include <machine/machdep.h>
 #include <machine/pcb.h>
 
diff -r 79b30083a4c8 -r b5cbeeee722e sys/arch/acorn26/acorn26/start.c
--- a/sys/arch/acorn26/acorn26/start.c  Sun Aug 18 16:08:24 2013 +0000
+++ b/sys/arch/acorn26/acorn26/start.c  Sun Aug 18 16:08:42 2013 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: start.c,v 1.19 2012/08/16 18:15:10 matt Exp $ */
+/* $NetBSD: start.c,v 1.20 2013/08/18 16:08:42 matt Exp $ */
 /*-
  * Copyright (c) 1998, 2000 Ben Harris
  * All rights reserved.
@@ -31,7 +31,7 @@
 
 #include <sys/param.h>
 
-__KERNEL_RCSID(0, "$NetBSD: start.c,v 1.19 2012/08/16 18:15:10 matt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: start.c,v 1.20 2013/08/18 16:08:42 matt Exp $");
 
 #include "opt_modular.h"
 
@@ -43,7 +43,7 @@
 #include <dev/i2c/i2cvar.h>
 #include <acorn26/ioc/iociicvar.h>
 
-#include <arm/armreg.h>
+#include <arm/locore.h>
 #include <arm/undefined.h>
 #include <machine/boot.h>
 #include <machine/machdep.h>
diff -r 79b30083a4c8 -r b5cbeeee722e sys/arch/acorn26/podulebus/podulebus.c
--- a/sys/arch/acorn26/podulebus/podulebus.c    Sun Aug 18 16:08:24 2013 +0000
+++ b/sys/arch/acorn26/podulebus/podulebus.c    Sun Aug 18 16:08:42 2013 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: podulebus.c,v 1.20 2012/05/11 15:39:18 skrll Exp $ */
+/* $NetBSD: podulebus.c,v 1.21 2013/08/18 16:08:42 matt Exp $ */
 
 /*-
  * Copyright (c) 2000 Ben Harris
@@ -28,15 +28,17 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: podulebus.c,v 1.20 2012/05/11 15:39:18 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: podulebus.c,v 1.21 2013/08/18 16:08:42 matt Exp $");
 
 #include <sys/param.h>
 #include <sys/device.h>
 #include <sys/malloc.h>
 #include <sys/systm.h>
 #include <sys/bus.h>
+#include <sys/intr.h>
 
-#include <machine/intr.h>
+#include <arm/locore.h>
+
 #include <machine/irq.h>
 #include <machine/machdep.h>
 #include <machine/memcreg.h>



Home | Main Index | Thread Index | Old Index