include "locators.h" explicitely where it is needed, so that
it can be removed in the isavar.h header eventually
This commit is contained in:
parent
e6e73849a5
commit
edb77e2a6d
|
@ -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 @@ __KERNEL_RCSID(0, "$NetBSD: com_multi.c,v 1.17 2003/08/07 16:31:05 agc Exp $");
|
|||
#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 *));
|
||||
|
||||
|
|
|
@ -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 @@ __KERNEL_RCSID(0, "$NetBSD: fd.c,v 1.52 2004/06/04 01:12:04 thorpej Exp $");
|
|||
#include <machine/cpu.h>
|
||||
#include <machine/bus.h>
|
||||
|
||||
#include "locators.h"
|
||||
|
||||
#if defined(atari)
|
||||
/*
|
||||
* On the atari, it is configured as fdcisa
|
||||
|
|
|
@ -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 @@ __KERNEL_RCSID(0, "$NetBSD: isa.c,v 1.118 2004/08/30 15:05:19 drochner Exp $");
|
|||
#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 *);
|
||||
|
|
Loading…
Reference in New Issue