diff options
author | Mike Belopuhov <mikeb@cvs.openbsd.org> | 2012-11-20 18:43:20 +0000 |
---|---|---|
committer | Mike Belopuhov <mikeb@cvs.openbsd.org> | 2012-11-20 18:43:20 +0000 |
commit | c9e305147230f43f940a9ed43aeb41b63d5d7f39 (patch) | |
tree | 87a204867c1de7d1f6987f813936da435197f3f5 /sys/dev/pci | |
parent | 90004a3b73ec0857fea04ca6171334409ee9cdea (diff) |
fix typo
Diffstat (limited to 'sys/dev/pci')
-rw-r--r-- | sys/dev/pci/if_oce.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/sys/dev/pci/if_oce.c b/sys/dev/pci/if_oce.c index 2a2d747de91..13eec76de80 100644 --- a/sys/dev/pci/if_oce.c +++ b/sys/dev/pci/if_oce.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_oce.c,v 1.61 2012/11/14 17:25:46 mikeb Exp $ */ +/* $OpenBSD: if_oce.c,v 1.62 2012/11/20 18:43:19 mikeb Exp $ */ /* * Copyright (c) 2012 Mike Belopuhov @@ -376,7 +376,7 @@ struct oce_softc { #define IF_LRO_ENABLED(ifp) ISSET((ifp)->if_capabilities, IFCAP_LRO) -int oce_probe(struct device *, void *, void *); +int oce_match(struct device *, void *, void *); void oce_attach(struct device *, struct device *, void *); int oce_pci_alloc(struct oce_softc *, struct pci_attach_args *); void oce_attachhook(void *); @@ -517,7 +517,7 @@ struct cfdriver oce_cd = { }; struct cfattach oce_ca = { - sizeof(struct oce_softc), oce_probe, oce_attach, NULL, NULL + sizeof(struct oce_softc), oce_match, oce_attach, NULL, NULL }; const struct pci_matchid oce_devices[] = { @@ -529,7 +529,7 @@ const struct pci_matchid oce_devices[] = { }; int -oce_probe(struct device *parent, void *match, void *aux) +oce_match(struct device *parent, void *match, void *aux) { return (pci_matchbyid(aux, oce_devices, nitems(oce_devices))); } @@ -662,7 +662,6 @@ fail_1: oce_dma_free(sc, &sc->sc_mbx); } - int oce_pci_alloc(struct oce_softc *sc, struct pci_attach_args *pa) { |