summaryrefslogtreecommitdiffstats
path: root/sys/dev/fxp
diff options
context:
space:
mode:
authorjhb <jhb@FreeBSD.org>2011-03-23 13:10:15 +0000
committerjhb <jhb@FreeBSD.org>2011-03-23 13:10:15 +0000
commit00c3c01f4fbb02387e132c417f8a035d0366ee0d (patch)
tree69012038abf9668bf675409fa3f6a3717df04dbe /sys/dev/fxp
parentc38540fcc91acf7efba68d2816bd1ab0babb248a (diff)
downloadFreeBSD-src-00c3c01f4fbb02387e132c417f8a035d0366ee0d.zip
FreeBSD-src-00c3c01f4fbb02387e132c417f8a035d0366ee0d.tar.gz
Do a sweep of the tree replacing calls to pci_find_extcap() with calls to
pci_find_cap() instead.
Diffstat (limited to 'sys/dev/fxp')
-rw-r--r--sys/dev/fxp/if_fxp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/fxp/if_fxp.c b/sys/dev/fxp/if_fxp.c
index 7fd1b8c..fc22a96 100644
--- a/sys/dev/fxp/if_fxp.c
+++ b/sys/dev/fxp/if_fxp.c
@@ -521,7 +521,7 @@ fxp_attach(device_t dev)
sc->revision != FXP_REV_82559S_A) {
fxp_read_eeprom(sc, &data, 10, 1);
if ((data & 0x20) != 0 &&
- pci_find_extcap(sc->dev, PCIY_PMG, &pmc) == 0)
+ pci_find_cap(sc->dev, PCIY_PMG, &pmc) == 0)
sc->flags |= FXP_FLAG_WOLCAP;
}
@@ -1054,7 +1054,7 @@ fxp_suspend(device_t dev)
FXP_LOCK(sc);
ifp = sc->ifp;
- if (pci_find_extcap(sc->dev, PCIY_PMG, &pmc) == 0) {
+ if (pci_find_cap(sc->dev, PCIY_PMG, &pmc) == 0) {
pmstat = pci_read_config(sc->dev, pmc + PCIR_POWER_STATUS, 2);
pmstat &= ~(PCIM_PSTAT_PME | PCIM_PSTAT_PMEENABLE);
if ((ifp->if_capenable & IFCAP_WOL_MAGIC) != 0) {
@@ -1088,7 +1088,7 @@ fxp_resume(device_t dev)
FXP_LOCK(sc);
- if (pci_find_extcap(sc->dev, PCIY_PMG, &pmc) == 0) {
+ if (pci_find_cap(sc->dev, PCIY_PMG, &pmc) == 0) {
sc->flags &= ~FXP_FLAG_WOL;
pmstat = pci_read_config(sc->dev, pmc + PCIR_POWER_STATUS, 2);
/* Disable PME and clear PME status. */
OpenPOWER on IntegriCloud