Nuke __BROKEN_INDIRECT_CONFIG.
This commit is contained in:
parent
d595bfe79d
commit
ec7941bba2
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: joy_isapnp.c,v 1.12 1998/03/22 12:53:55 drochner Exp $ */
|
||||
/* $NetBSD: joy_isapnp.c,v 1.13 1998/06/08 06:47:15 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1996 The NetBSD Foundation, Inc.
|
||||
|
@ -49,11 +49,7 @@
|
|||
|
||||
#include <i386/isa/joyvar.h>
|
||||
|
||||
#ifdef __BROKEN_INDIRECT_CONFIG
|
||||
int joy_isapnp_match __P((struct device *, void *, void *));
|
||||
#else
|
||||
int joy_isapnp_match __P((struct device *, struct cfdata *, void *));
|
||||
#endif
|
||||
void joy_isapnp_attach __P((struct device *, struct device *, void *));
|
||||
|
||||
struct cfattach joy_isapnp_ca = {
|
||||
|
@ -63,11 +59,7 @@ struct cfattach joy_isapnp_ca = {
|
|||
int
|
||||
joy_isapnp_match(parent, match, aux)
|
||||
struct device *parent;
|
||||
#ifdef __BROKEN_INDIRECT_CONFIG
|
||||
void *match;
|
||||
#else
|
||||
struct cfdata *match;
|
||||
#endif
|
||||
void *aux;
|
||||
{
|
||||
struct isapnp_attach_args *ipa = aux;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: pceb.c,v 1.2 1998/02/06 08:00:52 thorpej Exp $ */
|
||||
/* $NetBSD: pceb.c,v 1.3 1998/06/08 06:45:55 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1996, 1998 The NetBSD Foundation, Inc.
|
||||
|
@ -54,11 +54,7 @@
|
|||
#include "eisa.h"
|
||||
#include "isa.h"
|
||||
|
||||
#ifdef __BROKEN_INDIRECT_CONFIG
|
||||
int pcebmatch __P((struct device *, void *, void *));
|
||||
#else
|
||||
int pcebmatch __P((struct device *, struct cfdata *, void *));
|
||||
#endif
|
||||
void pcebattach __P((struct device *, struct device *, void *));
|
||||
|
||||
struct cfattach pceb_ca = {
|
||||
|
@ -77,11 +73,7 @@ union pceb_attach_args {
|
|||
int
|
||||
pcebmatch(parent, match, aux)
|
||||
struct device *parent;
|
||||
#ifdef __BROKEN_INDIRECT_CONFIG
|
||||
void *match;
|
||||
#else
|
||||
struct cfdata *match;
|
||||
#endif
|
||||
void *aux;
|
||||
{
|
||||
struct pci_attach_args *pa = aux;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: pchb.c,v 1.13 1998/02/06 08:00:53 thorpej Exp $ */
|
||||
/* $NetBSD: pchb.c,v 1.14 1998/06/08 06:45:55 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1996, 1998 The NetBSD Foundation, Inc.
|
||||
|
@ -65,11 +65,7 @@
|
|||
#define I82424_BCTL_PCIMEM_BURSTEN 0x01
|
||||
#define I82424_BCTL_PCI_BURSTEN 0x02
|
||||
|
||||
#ifdef __BROKEN_INDIRECT_CONFIG
|
||||
int pchbmatch __P((struct device *, void *, void *));
|
||||
#else
|
||||
int pchbmatch __P((struct device *, struct cfdata *, void *));
|
||||
#endif
|
||||
void pchbattach __P((struct device *, struct device *, void *));
|
||||
|
||||
int pchb_print __P((void *, const char *));
|
||||
|
@ -81,11 +77,7 @@ struct cfattach pchb_ca = {
|
|||
int
|
||||
pchbmatch(parent, match, aux)
|
||||
struct device *parent;
|
||||
#ifdef __BROKEN_INDIRECT_CONFIG
|
||||
void *match;
|
||||
#else
|
||||
struct cfdata *match;
|
||||
#endif
|
||||
void *aux;
|
||||
{
|
||||
struct pci_attach_args *pa = aux;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: pcib.c,v 1.12 1998/03/28 02:12:02 cgd Exp $ */
|
||||
/* $NetBSD: pcib.c,v 1.13 1998/06/08 06:45:55 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1996, 1998 The NetBSD Foundation, Inc.
|
||||
|
@ -52,11 +52,7 @@
|
|||
|
||||
#include "isa.h"
|
||||
|
||||
#ifdef __BROKEN_INDIRECT_CONFIG
|
||||
int pcibmatch __P((struct device *, void *, void *));
|
||||
#else
|
||||
int pcibmatch __P((struct device *, struct cfdata *, void *));
|
||||
#endif
|
||||
void pcibattach __P((struct device *, struct device *, void *));
|
||||
|
||||
struct cfattach pcib_ca = {
|
||||
|
@ -69,11 +65,7 @@ int pcib_print __P((void *, const char *));
|
|||
int
|
||||
pcibmatch(parent, match, aux)
|
||||
struct device *parent;
|
||||
#ifdef __BROKEN_INDIRECT_CONFIG
|
||||
void *match;
|
||||
#else
|
||||
struct cfdata *match;
|
||||
#endif
|
||||
void *aux;
|
||||
{
|
||||
struct pci_attach_args *pa = aux;
|
||||
|
|
Loading…
Reference in New Issue