diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1999-01-07 06:14:50 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1999-01-07 06:14:50 +0000 |
commit | dec339aa2f66a28789b0d29d392dd49c56eef81e (patch) | |
tree | 2572ff564bc75c5f4e9f847ead06116a6c268a85 /sys/dev/isa/aic_isa.c | |
parent | c6e598578066b27bd22e830b671021d1abd28ee2 (diff) |
Die, NEWCONFIG
Diffstat (limited to 'sys/dev/isa/aic_isa.c')
-rw-r--r-- | sys/dev/isa/aic_isa.c | 33 |
1 files changed, 1 insertions, 32 deletions
diff --git a/sys/dev/isa/aic_isa.c b/sys/dev/isa/aic_isa.c index 812756240bc..a6e19bc68e5 100644 --- a/sys/dev/isa/aic_isa.c +++ b/sys/dev/isa/aic_isa.c @@ -1,4 +1,4 @@ -/* $OpenBSD: aic_isa.c,v 1.2 1998/10/05 07:34:43 fgsch Exp $ */ +/* $OpenBSD: aic_isa.c,v 1.3 1999/01/07 06:14:47 niklas Exp $ */ /* $NetBSD: aic6360.c,v 1.52 1996/12/10 21:27:51 thorpej Exp $ */ /* @@ -100,11 +100,6 @@ aic_isa_probe(parent, match, aux) bus_space_handle_t ioh; int rv; -#ifdef NEWCONFIG - if (ia->ia_iobase == IOBASEUNK) - return (0); -#endif - if (bus_space_map(iot, ia->ia_iobase, AIC_NPORTS, 0, &ioh)) return (0); @@ -113,28 +108,6 @@ aic_isa_probe(parent, match, aux) bus_space_unmap(iot, ioh, AIC_NPORTS); -#ifdef NEWCONFIG - if (ia->ia_irq != IRQUNK) { - if (ia->ia_irq != sc->sc_irq) { - printf("%s: irq mismatch; ", sc->sc_dev.dv_xname); - printf("kernel configured %d != board configured %d\n", - ia->ia_irq, sc->sc_irq); - return (0); - } - } else - ia->ia_irq = sc->sc_irq; - - if (ia->ia_drq != DRQUNK) { - if (ia->ia_drq != sc->sc_drq) { - printf("%s: drq mismatch; ", sc->sc_dev.dv_xname); - printf("kernel configured %d != board configured %d\n", - ia->ia_drq, sc->sc_drq); - return (0); - } - } else - ia->ia_drq = sc->sc_drq; -#endif - if (rv) { ia->ia_msize = 0; ia->ia_iosize = AIC_NPORTS; @@ -163,10 +136,6 @@ aic_isa_attach(parent, self, aux) printf("\n"); -#ifdef NEWCONFIG - isa_establish(&sc->sc_id, &sc->sc_dev); -#endif - sc->sc_ih = isa_intr_establish(ia->ia_ic, ia->ia_irq, IST_EDGE, IPL_BIO, aicintr, sc, sc->sc_dev.dv_xname); |