diff options
author | Myron Stowe <myron.stowe@redhat.com> | 2012-06-01 21:16:31 (GMT) |
---|---|---|
committer | Bjorn Helgaas <bhelgaas@google.com> | 2012-06-12 02:40:57 (GMT) |
commit | cb97ae3485955401d637bd269b0d24d3cd3fd3ec (patch) | |
tree | ff55372324e4a4d0f9b1b59992b0d7dc29ce4aca /drivers/ata | |
parent | c32823f82b42abc1f08b365085862fd1d57c0b61 (diff) | |
download | linux-fsl-qoriq-cb97ae3485955401d637bd269b0d24d3cd3fd3ec.tar.xz |
PCI: remove redundant checking in PCI Express capability routines
There are a number of redundant pci_is_pcie() checks in various PCI
Express capabilities related routines like the following:
if (!pci_is_pcie(dev))
return false;
pos = pci_pcie_cap(dev);
if (!pos)
return false;
The current pci_is_pcie() implementation is merely:
static inline bool pci_is_pcie(struct pci_dev *dev)
{
return !!pci_pcie_cap(dev);
}
so we can just drop the pci_is_pcie() test in such cases.
Acked-by: Donald Dutile <ddutile@redhat.com>
Signed-off-by: Myron Stowe <myron.stowe@redhat.com>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Diffstat (limited to 'drivers/ata')
0 files changed, 0 insertions, 0 deletions