diff options
author | Yijing Wang <wangyijing@huawei.com> | 2014-05-04 12:23:44 +0800 |
---|---|---|
committer | Bjorn Helgaas <bhelgaas@google.com> | 2014-05-27 14:58:01 -0600 |
commit | 087cfa93e0fb5f06c0e976e6f468ffedc83b3223 (patch) | |
tree | 504204265419b509bd0f1ed433405a48b296118d /drivers/pci/hotplug/shpchp_pci.c | |
parent | f86e1f152e949b24ef336c640009183c01cfd9bf (diff) | |
download | linux-087cfa93e0fb5f06c0e976e6f468ffedc83b3223.tar.gz linux-087cfa93e0fb5f06c0e976e6f468ffedc83b3223.tar.bz2 linux-087cfa93e0fb5f06c0e976e6f468ffedc83b3223.zip |
PCI: shpchp: Use pci_is_bridge() to simplify code
Use pci_is_bridge() to simplify code. No functional change.
Requires: 326c1cdae741 PCI: Rename pci_is_bridge() to pci_has_subordinate()
Requires: 1c86438c9423 PCI: Add new pci_is_bridge() interface
Signed-off-by: Yijing Wang <wangyijing@huawei.com>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Diffstat (limited to 'drivers/pci/hotplug/shpchp_pci.c')
-rw-r--r-- | drivers/pci/hotplug/shpchp_pci.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/pci/hotplug/shpchp_pci.c b/drivers/pci/hotplug/shpchp_pci.c index 2bf69fe1926c..ea8ad313275c 100644 --- a/drivers/pci/hotplug/shpchp_pci.c +++ b/drivers/pci/hotplug/shpchp_pci.c @@ -64,8 +64,7 @@ int __ref shpchp_configure_device(struct slot *p_slot) list_for_each_entry(dev, &parent->devices, bus_list) { if (PCI_SLOT(dev->devfn) != p_slot->device) continue; - if ((dev->hdr_type == PCI_HEADER_TYPE_BRIDGE) || - (dev->hdr_type == PCI_HEADER_TYPE_CARDBUS)) + if (pci_is_bridge(dev)) pci_hp_add_bridge(dev); } |