summaryrefslogtreecommitdiff
path: root/sys/arch/alpha/isa
diff options
context:
space:
mode:
authorBrad Smith <brad@cvs.openbsd.org>2006-01-02 05:21:41 +0000
committerBrad Smith <brad@cvs.openbsd.org>2006-01-02 05:21:41 +0000
commitc11a4bd434e5d23cee65a597c8c689b07a2ea65e (patch)
tree4750f197bbc33cb513c7d5269ab28964a35f43fc /sys/arch/alpha/isa
parenta05362de6022925be821415b6c442a46c2ce5349 (diff)
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/arch/alpha/isa')
-rw-r--r--sys/arch/alpha/isa/mcclock_isa.c10
1 files changed, 1 insertions, 9 deletions
diff --git a/sys/arch/alpha/isa/mcclock_isa.c b/sys/arch/alpha/isa/mcclock_isa.c
index 5f6273a1856..d33f8aaa591 100644
--- a/sys/arch/alpha/isa/mcclock_isa.c
+++ b/sys/arch/alpha/isa/mcclock_isa.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: mcclock_isa.c,v 1.7 2002/03/14 01:26:27 millert Exp $ */
+/* $OpenBSD: mcclock_isa.c,v 1.8 2006/01/02 05:21:24 brad Exp $ */
/* $NetBSD: mcclock_isa.c,v 1.5 1996/12/05 01:39:29 cgd Exp $ */
/*
@@ -47,11 +47,7 @@ struct mcclock_isa_softc {
bus_space_handle_t sc_ioh;
};
-#ifdef __BROKEN_INDIRECT_CONFIG
int mcclock_isa_match(struct device *, void *, void *);
-#else
-int mcclock_isa_match(struct device *, struct cfdata *, void *);
-#endif
void mcclock_isa_attach(struct device *, struct device *, void *);
struct cfattach mcclock_isa_ca = {
@@ -69,11 +65,7 @@ const struct mcclock_busfns mcclock_isa_busfns = {
int
mcclock_isa_match(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;