diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2002-03-14 01:27:20 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2002-03-14 01:27:20 +0000 |
commit | 8327d0774703553db5e1a41a04bfdf4b1797c2ce (patch) | |
tree | ac9a52bace179e17769651fb9f805070d78abe5f /sys/dev/pci/if_wi_pci.c | |
parent | 7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff) |
First round of __P removal in sys
Diffstat (limited to 'sys/dev/pci/if_wi_pci.c')
-rw-r--r-- | sys/dev/pci/if_wi_pci.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sys/dev/pci/if_wi_pci.c b/sys/dev/pci/if_wi_pci.c index 963dbdb4f50..245f3755ace 100644 --- a/sys/dev/pci/if_wi_pci.c +++ b/sys/dev/pci/if_wi_pci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_wi_pci.c,v 1.13 2002/01/28 21:42:40 mickey Exp $ */ +/* $OpenBSD: if_wi_pci.c,v 1.14 2002/03/14 01:26:59 millert Exp $ */ /* * Copyright (c) 2001 Todd C. Miller <Todd.Miller@courtesan.com> @@ -114,11 +114,11 @@ #define WI_PCI_LOMEM 0x18 /* ISA membase */ #define WI_PCI_LOIO 0x1C /* ISA iobase */ -const struct wi_pci_product *wi_pci_lookup __P((struct pci_attach_args *pa)); -int wi_pci_match __P((struct device *, void *, void *)); -void wi_pci_attach __P((struct device *, struct device *, void *)); -int wi_intr __P((void *)); -int wi_attach __P((struct wi_softc *, int)); +const struct wi_pci_product *wi_pci_lookup(struct pci_attach_args *pa); +int wi_pci_match(struct device *, void *, void *); +void wi_pci_attach(struct device *, struct device *, void *); +int wi_intr(void *); +int wi_attach(struct wi_softc *, int); struct cfattach wi_pci_ca = { sizeof (struct wi_softc), wi_pci_match, wi_pci_attach |