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/isa/i82365_isa.c | |
parent | 7ff5140d1641cb333749e5f6eea39ad4eb1ede09 (diff) |
Add pcmcia_intr_string() to format the intr string for pcmcia attach
routines.
Diffstat (limited to 'sys/dev/isa/i82365_isa.c')
-rw-r--r-- | sys/dev/isa/i82365_isa.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/sys/dev/isa/i82365_isa.c b/sys/dev/isa/i82365_isa.c index 1a770e40ee0..4752201ad3a 100644 --- a/sys/dev/isa/i82365_isa.c +++ b/sys/dev/isa/i82365_isa.c @@ -1,4 +1,4 @@ -/* $OpenBSD: i82365_isa.c,v 1.18 2004/01/09 21:32:23 brad Exp $ */ +/* $OpenBSD: i82365_isa.c,v 1.19 2005/01/27 17:03:23 millert Exp $ */ /* $NetBSD: i82365_isa.c,v 1.11 1998/06/09 07:25:00 thorpej Exp $ */ /* @@ -61,10 +61,6 @@ int pcic_isa_probe(struct device *, void *, void *); void pcic_isa_attach(struct device *, struct device *, void *); -void *pcic_isa_chip_intr_establish(pcmcia_chipset_handle_t, - struct pcmcia_function *, int, int (*) (void *), void *, char *); -void pcic_isa_chip_intr_disestablish(pcmcia_chipset_handle_t, void *); - struct cfattach pcic_isa_ca = { sizeof(struct pcic_softc), pcic_isa_probe, pcic_isa_attach }; @@ -82,6 +78,7 @@ static struct pcmcia_chip_functions pcic_isa_functions = { pcic_isa_chip_intr_establish, pcic_isa_chip_intr_disestablish, + pcic_isa_chip_intr_string, pcic_chip_socket_enable, pcic_chip_socket_disable, |