diff options
author | Myron Stowe <[email protected]> | 2012-06-01 15:16:31 -0600 |
---|---|---|
committer | Bjorn Helgaas <[email protected]> | 2012-06-11 20:40:57 -0600 |
commit | cb97ae3485955401d637bd269b0d24d3cd3fd3ec (patch) | |
tree | ff55372324e4a4d0f9b1b59992b0d7dc29ce4aca /fs/jbd2/commit.c | |
parent | c32823f82b42abc1f08b365085862fd1d57c0b61 (diff) |
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 <[email protected]>
Signed-off-by: Myron Stowe <[email protected]>
Signed-off-by: Bjorn Helgaas <[email protected]>
Diffstat (limited to 'fs/jbd2/commit.c')
0 files changed, 0 insertions, 0 deletions