diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2006-10-20 16:54:02 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2006-10-20 16:54:02 +0000 |
commit | bc84703e9f93bdc102d3416a6939ea7e4a505b0e (patch) | |
tree | 8f7cd9e47abc6104ca11ffb76c9e7958311c1726 /sys/dev/pci | |
parent | 33aae4888cee1d2168ee259a78d8df9d31b497e2 (diff) |
ansi
Diffstat (limited to 'sys/dev/pci')
-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; |