diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2006-01-02 05:21:41 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2006-01-02 05:21:41 +0000 |
commit | c11a4bd434e5d23cee65a597c8c689b07a2ea65e (patch) | |
tree | 4750f197bbc33cb513c7d5269ab28964a35f43fc /sys/arch/i386 | |
parent | a05362de6022925be821415b6c442a46c2ce5349 (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/i386')
-rw-r--r-- | sys/arch/i386/isa/clock.c | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/sys/arch/i386/isa/clock.c b/sys/arch/i386/isa/clock.c index fa18701776d..7d12127563f 100644 --- a/sys/arch/i386/isa/clock.c +++ b/sys/arch/i386/isa/clock.c @@ -1,4 +1,4 @@ -/* $OpenBSD: clock.c,v 1.32 2004/06/13 21:49:16 niklas Exp $ */ +/* $OpenBSD: clock.c,v 1.33 2006/01/02 05:21:30 brad Exp $ */ /* $NetBSD: clock.c,v 1.39 1996/05/12 23:11:54 mycroft Exp $ */ /*- @@ -109,12 +109,7 @@ WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. #if (NPCPPI > 0) #include <dev/isa/pcppivar.h> -#define __BROKEN_INDIRECT_CONFIG /* XXX */ -#ifdef __BROKEN_INDIRECT_CONFIG int sysbeepmatch(struct device *, void *, void *); -#else -int sysbeepmatch(struct device *, struct cfdata *, void *); -#endif void sysbeepattach(struct device *, struct device *, void *); struct cfattach sysbeep_ca = { @@ -387,11 +382,7 @@ i8254_delay(n) int sysbeepmatch(parent, match, aux) struct device *parent; -#ifdef __BROKEN_INDIRECT_CONFIG void *match; -#else - struct cfdata *match; -#endif void *aux; { return (!ppi_attached); |