summaryrefslogtreecommitdiff
path: root/sys/arch/alpha/pci/sio.c
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2002-03-14 01:27:20 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2002-03-14 01:27:20 +0000
commit8327d0774703553db5e1a41a04bfdf4b1797c2ce (patch)
treeac9a52bace179e17769651fb9f805070d78abe5f /sys/arch/alpha/pci/sio.c
parent7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff)
First round of __P removal in sys
Diffstat (limited to 'sys/arch/alpha/pci/sio.c')
-rw-r--r--sys/arch/alpha/pci/sio.c30
1 files changed, 15 insertions, 15 deletions
diff --git a/sys/arch/alpha/pci/sio.c b/sys/arch/alpha/pci/sio.c
index ad86481302c..dcacd7049ca 100644
--- a/sys/arch/alpha/pci/sio.c
+++ b/sys/arch/alpha/pci/sio.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: sio.c,v 1.26 2001/10/26 11:14:09 art Exp $ */
+/* $OpenBSD: sio.c,v 1.27 2002/03/14 01:26:27 millert Exp $ */
/* $NetBSD: sio.c,v 1.15 1996/12/05 01:39:36 cgd Exp $ */
/*
@@ -56,13 +56,13 @@ struct sio_softc {
};
#ifdef __BROKEN_INDIRECT_CONFIG
-int siomatch __P((struct device *, void *, void *));
+int siomatch(struct device *, void *, void *);
#else
-int siomatch __P((struct device *, struct cfdata *, void *));
+int siomatch(struct device *, struct cfdata *, void *);
#endif
-void sioattach __P((struct device *, struct device *, void *));
+void sioattach(struct device *, struct device *, void *);
-extern int sio_intr_alloc __P((isa_chipset_tag_t *, int, int, int *));
+extern int sio_intr_alloc(isa_chipset_tag_t *, int, int, int *);
struct cfattach sio_ca = {
@@ -74,9 +74,9 @@ struct cfdriver sio_cd = {
};
#ifdef __BROKEN_INDIRECT_CONFIG
-int pcebmatch __P((struct device *, void *, void *));
+int pcebmatch(struct device *, void *, void *);
#else
-int pcebmatch __P((struct device *, struct cfdata *, void *));
+int pcebmatch(struct device *, struct cfdata *, void *);
#endif
struct cfattach pceb_ca = {
@@ -93,14 +93,14 @@ union sio_attach_args {
struct eisabus_attach_args sa_eba;
};
-int sioprint __P((void *, const char *pnp));
-void sio_isa_attach_hook __P((struct device *, struct device *,
- struct isabus_attach_args *));
-void sio_eisa_attach_hook __P((struct device *, struct device *,
- struct eisabus_attach_args *));
-int sio_eisa_maxslots __P((void *));
-int sio_eisa_intr_map __P((void *, u_int, eisa_intr_handle_t *));
-void sio_bridge_callback __P((void *));
+int sioprint(void *, const char *pnp);
+void sio_isa_attach_hook(struct device *, struct device *,
+ struct isabus_attach_args *);
+void sio_eisa_attach_hook(struct device *, struct device *,
+ struct eisabus_attach_args *);
+int sio_eisa_maxslots(void *);
+int sio_eisa_intr_map(void *, u_int, eisa_intr_handle_t *);
+void sio_bridge_callback(void *);
int
siomatch(parent, match, aux)