diff options
author | Bjorn Helgaas <bhelgaas@google.com> | 2014-02-18 14:33:46 -0700 |
---|---|---|
committer | Bjorn Helgaas <bhelgaas@google.com> | 2014-02-18 14:33:46 -0700 |
commit | 6354647f55b9848dc9aaa091e2f762ca1a3eb085 (patch) | |
tree | cec2c643c1635d92d903444f2e6586eda75110dc /drivers/pci/pci.c | |
parent | c128856b48b1a7132166c6b37a53b086d549fbde (diff) | |
parent | 94e6a9b93064b49024b8701d2d81fcb4a821fa09 (diff) | |
download | linux-6354647f55b9848dc9aaa091e2f762ca1a3eb085.tar.bz2 |
Merge branch 'pci/list-for-each-entry' into next
* pci/list-for-each-entry:
PCI: Remove pci_bus_b() and use list_for_each_entry() directly
pcmcia: Use list_for_each_entry() for bus traversal
powerpc/PCI: Use list_for_each_entry() for bus traversal
drm: Use list_for_each_entry() for bus traversal
ARM/PCI: Use list_for_each_entry() for bus traversal
ACPI / hotplug / PCI: Use list_for_each_entry() for bus traversal
Diffstat (limited to 'drivers/pci/pci.c')
-rw-r--r-- | drivers/pci/pci.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/pci/pci.c b/drivers/pci/pci.c index b89502ff3139..e4d45d27f288 100644 --- a/drivers/pci/pci.c +++ b/drivers/pci/pci.c @@ -108,12 +108,12 @@ static bool pcie_ari_disabled; */ unsigned char pci_bus_max_busnr(struct pci_bus* bus) { - struct list_head *tmp; + struct pci_bus *tmp; unsigned char max, n; max = bus->busn_res.end; - list_for_each(tmp, &bus->children) { - n = pci_bus_max_busnr(pci_bus_b(tmp)); + list_for_each_entry(tmp, &bus->children, node) { + n = pci_bus_max_busnr(tmp); if(n > max) max = n; } |