summaryrefslogtreecommitdiffstats
path: root/sys/dev/isa/mcd.c
diff options
context:
space:
mode:
authorbrad <brad@openbsd.org>2006-01-02 05:21:20 +0000
committerbrad <brad@openbsd.org>2006-01-02 05:21:20 +0000
commitcf64c917f2b15b11f1ab5ed36dbe3d2a5678d72b (patch)
treeeed0c3a027ad83d46eb63a91972d4c7550a7b01d /sys/dev/isa/mcd.c
parentregen (diff)
downloadwireguard-openbsd-cf64c917f2b15b11f1ab5ed36dbe3d2a5678d72b.tar.xz
wireguard-openbsd-cf64c917f2b15b11f1ab5ed36dbe3d2a5678d72b.zip
remove last traces of __BROKEN_INDIRECT_CONFIG.
Thanks to aanriot@ and Michael Knudsen for checking that alpha/i386/macppc kernels still compile.
Diffstat (limited to 'sys/dev/isa/mcd.c')
-rw-r--r--sys/dev/isa/mcd.c11
1 files changed, 1 insertions, 10 deletions
diff --git a/sys/dev/isa/mcd.c b/sys/dev/isa/mcd.c
index 5336ebd04d1..25e3f6cb2e5 100644
--- a/sys/dev/isa/mcd.c
+++ b/sys/dev/isa/mcd.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: mcd.c,v 1.34 2004/05/01 23:23:13 millert Exp $ */
+/* $OpenBSD: mcd.c,v 1.35 2006/01/02 05:21:40 brad Exp $ */
/* $NetBSD: mcd.c,v 1.60 1998/01/14 12:14:41 drochner Exp $ */
/*
@@ -186,12 +186,7 @@ int mcd_getqchan(struct mcd_softc *, union mcd_qchninfo *, int);
int mcd_setlock(struct mcd_softc *, int);
int mcd_find(bus_space_tag_t, bus_space_handle_t, struct mcd_softc *);
-#define __BROKEN_INDIRECT_CONFIG
-#ifdef __BROKEN_INDIRECT_CONFIG
int mcdprobe(struct device *, void *, void *);
-#else
-int mcdprobe(struct device *, struct cfdata *, void *);
-#endif
void mcdattach(struct device *, struct device *, void *);
struct cfattach mcd_ca = {
@@ -895,11 +890,7 @@ mcd_find(iot, ioh, sc)
int
mcdprobe(parent, match, aux)
struct device *parent;
-#ifdef __BROKEN_INDIRECT_CONFIG
void *match;
-#else
- struct cfdata *match;
-#endif
void *aux;
{
struct isa_attach_args *ia = aux;