summaryrefslogtreecommitdiff
path: root/sys/dev/pcmcia/pcmciachip.h
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2001-08-17 21:52:17 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2001-08-17 21:52:17 +0000
commit54a78f04df78dceb51aab78f8cb1db245ecddc9c (patch)
treea3d1ec59096526b8e7922f2473f7d489e29cf617 /sys/dev/pcmcia/pcmciachip.h
parent4eaefd11adca006e8c394f6504d254a7d08bf545 (diff)
quieten pcmcia/cardbus interrupt handling at unsuspend time
Diffstat (limited to 'sys/dev/pcmcia/pcmciachip.h')
-rw-r--r--sys/dev/pcmcia/pcmciachip.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/pcmcia/pcmciachip.h b/sys/dev/pcmcia/pcmciachip.h
index 65821a53138..5a9c67afa76 100644
--- a/sys/dev/pcmcia/pcmciachip.h
+++ b/sys/dev/pcmcia/pcmciachip.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: pcmciachip.h,v 1.3 2000/04/08 05:50:51 aaron Exp $ */
+/* $OpenBSD: pcmciachip.h,v 1.4 2001/08/17 21:52:16 deraadt Exp $ */
/* $NetBSD: pcmciachip.h,v 1.5 2000/01/13 08:58:51 joda Exp $ */
/*
@@ -83,7 +83,7 @@ struct pcmcia_chip_functions {
/* interrupt glue */
void *(*intr_establish) __P((pcmcia_chipset_handle_t,
- struct pcmcia_function *, int, int (*)(void *), void *));
+ struct pcmcia_function *, int, int (*)(void *), void *, char *));
void (*intr_disestablish) __P((pcmcia_chipset_handle_t, void *));
/* card enable/disable */
@@ -125,8 +125,8 @@ struct pcmcia_chip_functions {
((*(tag)->io_unmap)((handle), (window)))
/* Interrupt functions. */
-#define pcmcia_chip_intr_establish(tag, handle, pf, ipl, fct, arg) \
- ((*(tag)->intr_establish)((handle), (pf), (ipl), (fct), (arg)))
+#define pcmcia_chip_intr_establish(tag, handle, pf, ipl, fct, arg, xname) \
+ ((*(tag)->intr_establish)((handle), (pf), (ipl), (fct), (arg), (xname)))
#define pcmcia_chip_intr_disestablish(tag, handle, ih) \
((*(tag)->intr_disestablish)((handle), (ih)))