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/arch/alpha/pci/lca_pci.c | |
parent | 7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff) |
First round of __P removal in sys
Diffstat (limited to 'sys/arch/alpha/pci/lca_pci.c')
-rw-r--r-- | sys/arch/alpha/pci/lca_pci.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/sys/arch/alpha/pci/lca_pci.c b/sys/arch/alpha/pci/lca_pci.c index 10e5fa3a8f7..697619e294f 100644 --- a/sys/arch/alpha/pci/lca_pci.c +++ b/sys/arch/alpha/pci/lca_pci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: lca_pci.c,v 1.7 2001/11/06 19:53:13 miod Exp $ */ +/* $OpenBSD: lca_pci.c,v 1.8 2002/03/14 01:26:27 millert Exp $ */ /* $NetBSD: lca_pci.c,v 1.13 1997/09/02 13:19:35 thorpej Exp $ */ /* @@ -42,14 +42,14 @@ #include <alpha/pci/lcareg.h> #include <alpha/pci/lcavar.h> -void lca_attach_hook __P((struct device *, struct device *, - struct pcibus_attach_args *)); -int lca_bus_maxdevs __P((void *, int)); -pcitag_t lca_make_tag __P((void *, int, int, int)); -void lca_decompose_tag __P((void *, pcitag_t, int *, int *, - int *)); -pcireg_t lca_conf_read __P((void *, pcitag_t, int)); -void lca_conf_write __P((void *, pcitag_t, int, pcireg_t)); +void lca_attach_hook(struct device *, struct device *, + struct pcibus_attach_args *); +int lca_bus_maxdevs(void *, int); +pcitag_t lca_make_tag(void *, int, int, int); +void lca_decompose_tag(void *, pcitag_t, int *, int *, + int *); +pcireg_t lca_conf_read(void *, pcitag_t, int); +void lca_conf_write(void *, pcitag_t, int, pcireg_t); void lca_pci_init(pc, v) |