]> git.openfabrics.org - ~shefty/rdma-dev.git/commitdiff
iwlegacy: remove unnecessary read of PCI_CAP_ID_EXP
authorJon Mason <jdmason@kudzu.us>
Mon, 27 Jun 2011 17:48:54 +0000 (12:48 -0500)
committerJohn W. Linville <linville@tuxdriver.com>
Wed, 29 Jun 2011 18:53:25 +0000 (14:53 -0400)
The PCIE capability offset is saved during PCI bus walking.  It will
remove an unnecessary search in the PCI configuration space if this
value is referenced instead of reacquiring it.

Signed-off-by: Jon Mason <jdmason@kudzu.us>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
drivers/net/wireless/iwlegacy/iwl-core.h

index a2de7e991706f1a529507205330e60f5b521c5e0..84da79376ef8c16c835c533d056aa9ea4ca940be 100644 (file)
@@ -484,7 +484,7 @@ static inline u16 iwl_legacy_pcie_link_ctl(struct iwl_priv *priv)
 {
        int pos;
        u16 pci_lnk_ctl;
-       pos = pci_find_capability(priv->pci_dev, PCI_CAP_ID_EXP);
+       pos = pci_pcie_cap(priv->pci_dev);
        pci_read_config_word(priv->pci_dev, pos + PCI_EXP_LNKCTL, &pci_lnk_ctl);
        return pci_lnk_ctl;
 }