diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1997-07-12 01:42:09 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1997-07-12 01:42:09 +0000 |
commit | ab95677452c91c9f6a44ad3eeb5818cec53b1943 (patch) | |
tree | 9615ed75249346b8ab2a8ceaaff8af2492cff6f4 | |
parent | 05d0e9fed5c71224332a18865aac994aa5501eab (diff) |
Add missing sc->sc_dev.dv_xname arg to isa_intr_establish().
-rw-r--r-- | sys/dev/isa/pss.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/isa/pss.c b/sys/dev/isa/pss.c index 651a644c097..636b208cc18 100644 --- a/sys/dev/isa/pss.c +++ b/sys/dev/isa/pss.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pss.c,v 1.11 1997/07/10 23:06:36 provos Exp $ */ +/* $OpenBSD: pss.c,v 1.12 1997/07/12 01:42:08 millert Exp $ */ /* $NetBSD: pss.c,v 1.15 1996/05/12 23:53:23 mycroft Exp $ */ /* @@ -1090,7 +1090,7 @@ spattach(parent, self, aux) #endif sc->sc_ih = isa_intr_establish(ic, cf->cf_irq, IST_EDGE, IPL_AUDIO, - ad1848_intr, sc); + ad1848_intr, sc, sc->sc_dev.dv_xname); /* XXX might use pssprint func ?? */ printf(" port 0x%x-0x%x irq %d drq %d", @@ -1120,7 +1120,7 @@ mpuattach(parent, self, aux) #endif sc->sc_ih = isa_intr_establish(ic, cf->cf_irq, IST_EDGE, IPL_AUDIO, - mpuintr, sc); + mpuintr, sc, sc->sc_dev.dv_xname); /* XXX might use pssprint func ?? */ printf(" port 0x%x-0x%x irq %d\n", |