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/siop_pci_common.h | |
parent | 7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff) |
First round of __P removal in sys
Diffstat (limited to 'sys/dev/pci/siop_pci_common.h')
-rw-r--r-- | sys/dev/pci/siop_pci_common.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/dev/pci/siop_pci_common.h b/sys/dev/pci/siop_pci_common.h index 39d640250fd..0dc24a7c4b2 100644 --- a/sys/dev/pci/siop_pci_common.h +++ b/sys/dev/pci/siop_pci_common.h @@ -1,4 +1,4 @@ -/* $OpenBSD: siop_pci_common.h,v 1.3 2001/04/15 06:01:31 krw Exp $ */ +/* $OpenBSD: siop_pci_common.h,v 1.4 2002/03/14 01:27:00 millert Exp $ */ /* $NetBSD: siop_pci_common.h,v 1.2 2000/10/23 14:57:23 bouyer Exp $ */ /* @@ -47,7 +47,7 @@ struct siop_product_desc { int ram_size; /* size of RAM, if appropriate */ }; -const struct siop_product_desc * siop_lookup_product __P((u_int32_t, int)); +const struct siop_product_desc * siop_lookup_product(u_int32_t, int); /* Driver internal state */ struct siop_pci_softc { @@ -58,6 +58,6 @@ struct siop_pci_softc { const struct siop_product_desc *sc_pp; /* Adapter description */ }; -int siop_pci_attach_common __P((struct siop_pci_softc *, - struct pci_attach_args *)); -void siop_pci_reset __P((struct siop_softc *)); +int siop_pci_attach_common(struct siop_pci_softc *, + struct pci_attach_args *); +void siop_pci_reset(struct siop_softc *); |