diff options
author | 2006-10-20 16:54:01 +0000 | |
---|---|---|
committer | 2006-10-20 16:54:01 +0000 | |
commit | cf96b6e253cbb244ae14f3f13ed80fcbc37975cf (patch) | |
tree | ef9889e3760b2f10eccaf39d6bf8d3251d38d773 /sys/dev/pci/if_ne_pci.c | |
parent | fix $OpenBSD$ tag. (diff) | |
download | wireguard-openbsd-cf96b6e253cbb244ae14f3f13ed80fcbc37975cf.tar.xz wireguard-openbsd-cf96b6e253cbb244ae14f3f13ed80fcbc37975cf.zip |
ansi
Diffstat (limited to 'sys/dev/pci/if_ne_pci.c')
-rw-r--r-- | sys/dev/pci/if_ne_pci.c | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/sys/dev/pci/if_ne_pci.c b/sys/dev/pci/if_ne_pci.c index 28aeaaf90e7..b2ce0451a16 100644 --- a/sys/dev/pci/if_ne_pci.c +++ b/sys/dev/pci/if_ne_pci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_ne_pci.c,v 1.14 2005/10/22 23:26:08 brad Exp $ */ +/* $OpenBSD: if_ne_pci.c,v 1.15 2006/10/20 16:54:01 brad Exp $ */ /* $NetBSD: if_ne_pci.c,v 1.8 1998/07/05 00:51:24 jonathan Exp $ */ /*- @@ -148,8 +148,7 @@ const struct ne_pci_product { const struct ne_pci_product *ne_pci_lookup(struct pci_attach_args *); const struct ne_pci_product * -ne_pci_lookup(pa) - struct pci_attach_args *pa; +ne_pci_lookup(struct pci_attach_args *pa) { const struct ne_pci_product *npp; @@ -170,9 +169,7 @@ ne_pci_lookup(pa) #define PCI_CBIO 0x10 /* Configuration Base IO Address */ int -ne_pci_match(parent, match, aux) - struct device *parent; - void *match, *aux; +ne_pci_match(struct device *parent, void *match, void *aux) { struct pci_attach_args *pa = aux; @@ -183,9 +180,7 @@ ne_pci_match(parent, match, aux) } void -ne_pci_attach(parent, self, aux) - struct device *parent, *self; - void *aux; +ne_pci_attach(struct device *parent, struct device *self, void *aux) { struct ne_pci_softc *psc = (struct ne_pci_softc *)self; struct ne2000_softc *nsc = &psc->sc_ne2000; |