summaryrefslogtreecommitdiff
path: root/sys/dev/pci/if_hme_pci.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/dev/pci/if_hme_pci.c
parent7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff)
First round of __P removal in sys
Diffstat (limited to 'sys/dev/pci/if_hme_pci.c')
-rw-r--r--sys/dev/pci/if_hme_pci.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/pci/if_hme_pci.c b/sys/dev/pci/if_hme_pci.c
index 5740d6416f1..215586a9046 100644
--- a/sys/dev/pci/if_hme_pci.c
+++ b/sys/dev/pci/if_hme_pci.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_hme_pci.c,v 1.5 2002/03/13 21:02:54 jason Exp $ */
+/* $OpenBSD: if_hme_pci.c,v 1.6 2002/03/14 01:26:58 millert Exp $ */
/* $NetBSD: if_hme_pci.c,v 1.3 2000/12/28 22:59:13 sommerfeld Exp $ */
/*
@@ -74,8 +74,8 @@ struct hme_pci_softc {
void *hsc_ih;
};
-int hmematch_pci __P((struct device *, void *, void *));
-void hmeattach_pci __P((struct device *, struct device *, void *));
+int hmematch_pci(struct device *, void *, void *);
+void hmeattach_pci(struct device *, struct device *, void *);
struct cfattach hme_pci_ca = {
sizeof(struct hme_pci_softc), hmematch_pci, hmeattach_pci
@@ -106,7 +106,7 @@ hmeattach_pci(parent, self, aux)
struct hme_softc *sc = &hsc->hsc_hme;
pci_intr_handle_t intrhandle;
/* XXX the following declarations should be elsewhere */
- extern void myetheraddr __P((u_char *));
+ extern void myetheraddr(u_char *);
pcireg_t csr;
const char *intrstr;
int type;