diff options
author | 2001-08-17 21:52:16 +0000 | |
---|---|---|
committer | 2001-08-17 21:52:16 +0000 | |
commit | c59583c5b53ff921bec2c46ea583f3a837f1a18e (patch) | |
tree | 7720aaa8e742f1587d3045c36b3fc23b35d47dcd /sys/dev/isa/tcic2_isa.c | |
parent | fgen from NetBSD (diff) | |
download | wireguard-openbsd-c59583c5b53ff921bec2c46ea583f3a837f1a18e.tar.xz wireguard-openbsd-c59583c5b53ff921bec2c46ea583f3a837f1a18e.zip |
quieten pcmcia/cardbus interrupt handling at unsuspend time
Diffstat (limited to 'sys/dev/isa/tcic2_isa.c')
-rw-r--r-- | sys/dev/isa/tcic2_isa.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sys/dev/isa/tcic2_isa.c b/sys/dev/isa/tcic2_isa.c index 725e5e49fb3..aa91660a958 100644 --- a/sys/dev/isa/tcic2_isa.c +++ b/sys/dev/isa/tcic2_isa.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tcic2_isa.c,v 1.1 2000/05/15 04:17:29 jason Exp $ */ +/* $OpenBSD: tcic2_isa.c,v 1.2 2001/08/17 21:52:16 deraadt Exp $ */ /* $NetBSD: tcic2_isa.c,v 1.2 1999/04/08 16:14:29 bad Exp $ */ #undef TCICISADEBUG @@ -112,7 +112,7 @@ int tcic_isa_probe __P((struct device *, void *, void *)); void tcic_isa_attach __P((struct device *, struct device *, void *)); void *tcic_isa_chip_intr_establish __P((pcmcia_chipset_handle_t, - struct pcmcia_function *, int, int (*) (void *), void *)); + struct pcmcia_function *, int, int (*) (void *), void *, char *)); void tcic_isa_chip_intr_disestablish __P((pcmcia_chipset_handle_t, void *)); struct cfattach tcic_isa_ca = { @@ -308,12 +308,13 @@ tcic_isa_attach(parent, self, aux) } void * -tcic_isa_chip_intr_establish(pch, pf, ipl, fct, arg) +tcic_isa_chip_intr_establish(pch, pf, ipl, fct, arg, xname) pcmcia_chipset_handle_t pch; struct pcmcia_function *pf; int ipl; int (*fct) __P((void *)); void *arg; + char *xname; { struct tcic_handle *h = (struct tcic_handle *) pch; int irq, ist, val, reg; |