diff options
Diffstat (limited to 'sys/dev/isa/if_ep_isa.c')
-rw-r--r-- | sys/dev/isa/if_ep_isa.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/isa/if_ep_isa.c b/sys/dev/isa/if_ep_isa.c index 4390cc6b81d..ea5b21f412d 100644 --- a/sys/dev/isa/if_ep_isa.c +++ b/sys/dev/isa/if_ep_isa.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_ep_isa.c,v 1.14 1998/06/02 20:29:02 deraadt Exp $ */ +/* $OpenBSD: if_ep_isa.c,v 1.15 1998/09/11 12:06:57 fgsch Exp $ */ /* $NetBSD: if_ep_isa.c,v 1.5 1996/05/12 23:52:36 mycroft Exp $ */ /* @@ -285,13 +285,13 @@ ep_isa_attach(parent, self, aux) chipset = (int)(long)ia->ia_aux; if ((chipset & 0xfff0) == PROD_ID_3C509) { - epconfig(sc, EP_CHIPSET_3C509); + epconfig(sc, EP_CHIPSET_3C509, NULL); } else { /* * XXX: Maybe a 3c515, but the check in ep_isa_probe looks * at the moment only for a 3c509. */ - epconfig(sc, EP_CHIPSET_UNKNOWN); + epconfig(sc, EP_CHIPSET_UNKNOWN, NULL); } sc->sc_ih = isa_intr_establish(ia->ia_ic, ia->ia_irq, IST_EDGE, |