diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2005-01-27 17:03:25 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2005-01-27 17:03:25 +0000 |
commit | 7b4677abf4abc2b0e1c8b1d23b4f711f4839f65c (patch) | |
tree | a873aec91b706115de534c5732ac00b9bf1dd03d /sys/dev/pcmcia/pcmciavar.h | |
parent | 7ff5140d1641cb333749e5f6eea39ad4eb1ede09 (diff) |
Add pcmcia_intr_string() to format the intr string for pcmcia attach
routines.
Diffstat (limited to 'sys/dev/pcmcia/pcmciavar.h')
-rw-r--r-- | sys/dev/pcmcia/pcmciavar.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/pcmcia/pcmciavar.h b/sys/dev/pcmcia/pcmciavar.h index 7aeecd781a0..4bd4c7b0158 100644 --- a/sys/dev/pcmcia/pcmciavar.h +++ b/sys/dev/pcmcia/pcmciavar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pcmciavar.h,v 1.17 2002/11/19 18:36:18 jason Exp $ */ +/* $OpenBSD: pcmciavar.h,v 1.18 2005/01/27 17:03:23 millert Exp $ */ /* $NetBSD: pcmciavar.h,v 1.5 1998/07/19 17:28:17 christos Exp $ */ /* @@ -275,3 +275,4 @@ int pcmcia_io_map(struct pcmcia_function *, int, bus_addr_t, void *pcmcia_intr_establish(struct pcmcia_function *, int, int (*) (void *), void *, char *); void pcmcia_intr_disestablish(struct pcmcia_function *, void *); +const char *pcmcia_intr_string(struct pcmcia_function *, void *); |