diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2001-08-17 21:52:17 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2001-08-17 21:52:17 +0000 |
commit | 54a78f04df78dceb51aab78f8cb1db245ecddc9c (patch) | |
tree | a3d1ec59096526b8e7922f2473f7d489e29cf617 /sys/dev/pcmcia/wdc_pcmcia.c | |
parent | 4eaefd11adca006e8c394f6504d254a7d08bf545 (diff) |
quieten pcmcia/cardbus interrupt handling at unsuspend time
Diffstat (limited to 'sys/dev/pcmcia/wdc_pcmcia.c')
-rw-r--r-- | sys/dev/pcmcia/wdc_pcmcia.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/pcmcia/wdc_pcmcia.c b/sys/dev/pcmcia/wdc_pcmcia.c index 4a580457fac..8f69365e839 100644 --- a/sys/dev/pcmcia/wdc_pcmcia.c +++ b/sys/dev/pcmcia/wdc_pcmcia.c @@ -1,4 +1,4 @@ -/* $OpenBSD: wdc_pcmcia.c,v 1.11 2001/06/12 09:05:34 d Exp $ */ +/* $OpenBSD: wdc_pcmcia.c,v 1.12 2001/08/17 21:52:16 deraadt Exp $ */ /* $NetBSD: wdc_pcmcia.c,v 1.19 1999/02/19 21:49:43 abs Exp $ */ /*- @@ -372,7 +372,7 @@ wdc_pcmcia_attach(parent, self, aux) #else /* Establish the interrupt handler. */ sc->sc_ih = pcmcia_intr_establish(sc->sc_pf, IPL_BIO, wdcintr, - &sc->wdc_channel); + &sc->wdc_channel, ""); if (sc->sc_ih == NULL) { printf("couldn't establish interrupt handler"); } @@ -457,7 +457,7 @@ wdc_pcmcia_activate(self, act) } sc->sc_ih = pcmcia_intr_establish(sc->sc_pf, IPL_BIO, - wdcintr, &sc->wdc_channel); + wdcintr, &sc->wdc_channel, sc->sc_wdcdev.sc_dev.dv_xname); if (sc->sc_ih == NULL) { printf("%s: " "couldn't establish interrupt handler\n", @@ -498,7 +498,7 @@ wdc_pcmcia_enable(arg, onoff) } sc->sc_ih = pcmcia_intr_establish(sc->sc_pf, IPL_BIO, - wdcintr, &sc->wdc_channel); + wdcintr, &sc->wdc_channel, sc->sc_dev.dv_xname); if (sc->sc_ih == NULL) { printf("%s: " "couldn't establish interrupt handler\n", |