diff options
Diffstat (limited to 'sys/arch/i386/pci/pcic_pci_machdep.c')
-rw-r--r-- | sys/arch/i386/pci/pcic_pci_machdep.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/i386/pci/pcic_pci_machdep.c b/sys/arch/i386/pci/pcic_pci_machdep.c index 4f7e1bbf3ca..1861a31bfc6 100644 --- a/sys/arch/i386/pci/pcic_pci_machdep.c +++ b/sys/arch/i386/pci/pcic_pci_machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pcic_pci_machdep.c,v 1.2 2001/08/17 21:52:16 deraadt Exp $ */ +/* $OpenBSD: pcic_pci_machdep.c,v 1.3 2002/03/14 01:26:33 millert Exp $ */ /* $NetBSD: pcic_pci_machdep.c,v 1.1 1998/12/20 17:53:29 nathanw Exp $ */ /* @@ -58,7 +58,7 @@ pcic_pci_machdep_intr_est(pc) void * pcic_pci_machdep_pcic_intr_establish(sc, fct) struct pcic_softc *sc; - int (*fct) __P((void *)); + int (*fct)(void *); { if (isa_intr_alloc(NULL, PCIC_CSC_INTR_IRQ_VALIDMASK & 0xffff, IST_EDGE, &(sc->irq))) @@ -73,7 +73,7 @@ pcic_pci_machdep_chip_intr_establish(pch, pf, ipl, fct, arg, xname) pcmcia_chipset_handle_t pch; struct pcmcia_function *pf; int ipl; - int (*fct) __P((void *)); + int (*fct)(void *); void *arg; char *xname; { |