diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2006-11-05 02:47:02 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2006-11-05 02:47:02 +0000 |
commit | ba98d00142352ef86bff08a619a6ba876c457f1b (patch) | |
tree | a921f5b5e4657ee57605778716828972cd956840 /sys/dev/pci | |
parent | b56c29769738f24767a0cac3f85a3ea90dd2ecdc (diff) |
ANSI
Diffstat (limited to 'sys/dev/pci')
-rw-r--r-- | sys/dev/pci/if_fxp_pci.c | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/sys/dev/pci/if_fxp_pci.c b/sys/dev/pci/if_fxp_pci.c index d2348321a36..725fedb2614 100644 --- a/sys/dev/pci/if_fxp_pci.c +++ b/sys/dev/pci/if_fxp_pci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_fxp_pci.c,v 1.48 2006/07/01 21:48:08 brad Exp $ */ +/* $OpenBSD: if_fxp_pci.c,v 1.49 2006/11/05 02:47:01 brad Exp $ */ /* * Copyright (c) 1995, David Greenman @@ -135,19 +135,14 @@ const struct pci_matchid fxp_pci_devices[] = { }; int -fxp_pci_match(parent, match, aux) - struct device *parent; - void *match; - void *aux; +fxp_pci_match(struct device *parent, void *match, void *aux) { return (pci_matchbyid((struct pci_attach_args *)aux, fxp_pci_devices, sizeof(fxp_pci_devices)/sizeof(fxp_pci_devices[0]))); } void -fxp_pci_attach(parent, self, aux) - struct device *parent, *self; - void *aux; +fxp_pci_attach(struct device *parent, struct device *self, void *aux) { struct fxp_softc *sc = (struct fxp_softc *)self; struct pci_attach_args *pa = aux; |