summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJun-ichiro itojun Hagino <itojun@cvs.openbsd.org>2002-06-25 23:33:32 +0000
committerJun-ichiro itojun Hagino <itojun@cvs.openbsd.org>2002-06-25 23:33:32 +0000
commit6075f57d275012f6ece7e0d0d990805bfaa1876a (patch)
treed884390ca3f2956fd47b9b29dfd6f72bd5192683
parent33f5a79b43a07ce25fba3ea5532da8279c2541aa (diff)
un __P() -ify.
-rw-r--r--sys/dev/ieee1394/ieee1394var.h4
-rw-r--r--sys/dev/pci/fwlynx_pci.c4
-rw-r--r--sys/dev/pci/fwohci_pci.c6
3 files changed, 7 insertions, 7 deletions
diff --git a/sys/dev/ieee1394/ieee1394var.h b/sys/dev/ieee1394/ieee1394var.h
index 66fbe2d5199..415f9007e83 100644
--- a/sys/dev/ieee1394/ieee1394var.h
+++ b/sys/dev/ieee1394/ieee1394var.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: ieee1394var.h,v 1.1 2002/06/25 17:11:49 itojun Exp $ */
+/* $OpenBSD: ieee1394var.h,v 1.2 2002/06/25 23:33:31 itojun Exp $ */
/* $NetBSD: ieee1394var.h,v 1.15 2002/02/27 05:04:28 jmc Exp $ */
/*-
@@ -110,7 +110,7 @@ struct ieee1394_node {
size_t node_configrom_len;
};
-int ieee1394_init __P((struct ieee1394_softc *));
+int ieee1394_init(struct ieee1394_softc *);
#define IEEE1394_ARGTYPE_PTR 0
#define IEEE1394_ARGTYPE_MBUF 1
diff --git a/sys/dev/pci/fwlynx_pci.c b/sys/dev/pci/fwlynx_pci.c
index cba7264154d..e9f1fc70dca 100644
--- a/sys/dev/pci/fwlynx_pci.c
+++ b/sys/dev/pci/fwlynx_pci.c
@@ -58,8 +58,8 @@ struct fwlynx_pci_softc {
void *psc_ih;
};
-static int fwlynx_pci_match __P((struct device *, struct cfdata *, void *));
-static void fwlynx_pci_attach __P((struct device *, struct device *, void *));
+static int fwlynx_pci_match(struct device *, struct cfdata *, void *);
+static void fwlynx_pci_attach(struct device *, struct device *, void *);
struct cfattach fwlynx_pci_ca = {
sizeof(struct fwlynx_pci_softc), fwlynx_pci_match, fwlynx_pci_attach,
diff --git a/sys/dev/pci/fwohci_pci.c b/sys/dev/pci/fwohci_pci.c
index 3733b585192..162dba6d13f 100644
--- a/sys/dev/pci/fwohci_pci.c
+++ b/sys/dev/pci/fwohci_pci.c
@@ -63,11 +63,11 @@ struct fwohci_pci_softc {
};
#ifdef __NetBSD__
-static int fwohci_pci_match __P((struct device *, struct cfdata *, void *));
+static int fwohci_pci_match(struct device *, struct cfdata *, void *);
#else
-static int fwohci_pci_match __P((struct device *, void *, void *));
+static int fwohci_pci_match(struct device *, void *, void *);
#endif
-static void fwohci_pci_attach __P((struct device *, struct device *, void *));
+static void fwohci_pci_attach(struct device *, struct device *, void *);
struct cfattach fwohci_pci_ca = {
sizeof(struct fwohci_pci_softc), fwohci_pci_match, fwohci_pci_attach,