Source-Changes-HG archive

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

[src/trunk]: src/sys/dev/isa include "locators.h" explicitely where it is nee...



details:   https://anonhg.NetBSD.org/src/rev/c49d4c4ed461
branches:  trunk
changeset: 569960:c49d4c4ed461
user:      drochner <drochner%NetBSD.org@localhost>
date:      Tue Sep 14 17:38:30 2004 +0000

description:
include "locators.h" explicitely where it is needed, so that
it can be removed in the isavar.h header eventually

diffstat:

 sys/dev/isa/com_multi.c |  6 ++++--
 sys/dev/isa/fd.c        |  6 ++++--
 sys/dev/isa/isa.c       |  6 ++++--
 3 files changed, 12 insertions(+), 6 deletions(-)

diffs (81 lines):

diff -r 09651a668df1 -r c49d4c4ed461 sys/dev/isa/com_multi.c
--- a/sys/dev/isa/com_multi.c   Tue Sep 14 17:25:37 2004 +0000
+++ b/sys/dev/isa/com_multi.c   Tue Sep 14 17:38:30 2004 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: com_multi.c,v 1.17 2003/08/07 16:31:05 agc Exp $       */
+/*     $NetBSD: com_multi.c,v 1.18 2004/09/14 17:38:30 drochner Exp $  */
 
 /*-
  * Copyright (c) 1998 The NetBSD Foundation, Inc.
@@ -72,7 +72,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: com_multi.c,v 1.17 2003/08/07 16:31:05 agc Exp $");
+__KERNEL_RCSID(0, "$NetBSD: com_multi.c,v 1.18 2004/09/14 17:38:30 drochner Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -97,6 +97,8 @@
 #include <dev/isa/isavar.h>
 #include <dev/isa/com_multi.h>
 
+#include "locators.h"
+
 int com_multi_probe __P((struct device *, struct cfdata *, void *));
 void com_multi_attach __P((struct device *, struct device *, void *));
 
diff -r 09651a668df1 -r c49d4c4ed461 sys/dev/isa/fd.c
--- a/sys/dev/isa/fd.c  Tue Sep 14 17:25:37 2004 +0000
+++ b/sys/dev/isa/fd.c  Tue Sep 14 17:38:30 2004 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: fd.c,v 1.52 2004/06/04 01:12:04 thorpej Exp $  */
+/*     $NetBSD: fd.c,v 1.53 2004/09/14 17:38:30 drochner Exp $ */
 
 /*-
  * Copyright (c) 1998, 2003 The NetBSD Foundation, Inc.
@@ -88,7 +88,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: fd.c,v 1.52 2004/06/04 01:12:04 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: fd.c,v 1.53 2004/09/14 17:38:30 drochner Exp $");
 
 #include "rnd.h"
 #include "opt_ddb.h"
@@ -131,6 +131,8 @@
 #include <machine/cpu.h>
 #include <machine/bus.h>
 
+#include "locators.h"
+
 #if defined(atari)
 /*
  * On the atari, it is configured as fdcisa
diff -r 09651a668df1 -r c49d4c4ed461 sys/dev/isa/isa.c
--- a/sys/dev/isa/isa.c Tue Sep 14 17:25:37 2004 +0000
+++ b/sys/dev/isa/isa.c Tue Sep 14 17:38:30 2004 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: isa.c,v 1.118 2004/08/30 15:05:19 drochner Exp $       */
+/*     $NetBSD: isa.c,v 1.119 2004/09/14 17:38:30 drochner Exp $       */
 
 /*-
  * Copyright (c) 1998, 2001 The NetBSD Foundation, Inc.
@@ -37,7 +37,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: isa.c,v 1.118 2004/08/30 15:05:19 drochner Exp $");
+__KERNEL_RCSID(0, "$NetBSD: isa.c,v 1.119 2004/09/14 17:38:30 drochner Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -59,6 +59,8 @@
 #include <dev/isapnp/isapnpvar.h>
 #endif
 
+#include "locators.h"
+
 int    isamatch(struct device *, struct cfdata *, void *);
 void   isaattach(struct device *, struct device *, void *);
 int    isarescan(struct device *, const char *, const int *);



Home | Main Index | Thread Index | Old Index