aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/bce
diff options
context:
space:
mode:
authorJohn Baldwin <jhb@FreeBSD.org>2011-03-23 13:10:15 +0000
committerJohn Baldwin <jhb@FreeBSD.org>2011-03-23 13:10:15 +0000
commit3b0a4aef967e33d85308e74b00c472820e173c7a (patch)
tree69012038abf9668bf675409fa3f6a3717df04dbe /sys/dev/bce
parent7ee26a530a31c4b2f5edab56f80ef08e4066d804 (diff)
downloadsrc-3b0a4aef967e33d85308e74b00c472820e173c7a.tar.gz
src-3b0a4aef967e33d85308e74b00c472820e173c7a.zip
Do a sweep of the tree replacing calls to pci_find_extcap() with calls to
pci_find_cap() instead.
Notes
Notes: svn path=/head/; revision=219902
Diffstat (limited to 'sys/dev/bce')
-rw-r--r--sys/dev/bce/if_bce.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/bce/if_bce.c b/sys/dev/bce/if_bce.c
index 49d3689ae933..7d0e47e5e827 100644
--- a/sys/dev/bce/if_bce.c
+++ b/sys/dev/bce/if_bce.c
@@ -801,13 +801,13 @@ bce_probe_pci_caps(device_t dev, struct bce_softc *sc)
DBENTER(BCE_VERBOSE_LOAD);
/* Check if PCI-X capability is enabled. */
- if (pci_find_extcap(dev, PCIY_PCIX, &reg) == 0) {
+ if (pci_find_cap(dev, PCIY_PCIX, &reg) == 0) {
if (reg != 0)
sc->bce_cap_flags |= BCE_PCIX_CAPABLE_FLAG;
}
/* Check if PCIe capability is enabled. */
- if (pci_find_extcap(dev, PCIY_EXPRESS, &reg) == 0) {
+ if (pci_find_cap(dev, PCIY_EXPRESS, &reg) == 0) {
if (reg != 0) {
u16 link_status = pci_read_config(dev, reg + 0x12, 2);
DBPRINT(sc, BCE_INFO_LOAD, "PCIe link_status = "
@@ -820,13 +820,13 @@ bce_probe_pci_caps(device_t dev, struct bce_softc *sc)
}
/* Check if MSI capability is enabled. */
- if (pci_find_extcap(dev, PCIY_MSI, &reg) == 0) {
+ if (pci_find_cap(dev, PCIY_MSI, &reg) == 0) {
if (reg != 0)
sc->bce_cap_flags |= BCE_MSI_CAPABLE_FLAG;
}
/* Check if MSI-X capability is enabled. */
- if (pci_find_extcap(dev, PCIY_MSIX, &reg) == 0) {
+ if (pci_find_cap(dev, PCIY_MSIX, &reg) == 0) {
if (reg != 0)
sc->bce_cap_flags |= BCE_MSIX_CAPABLE_FLAG;
}