diff options
author | Bjorn Helgaas <bhelgaas@google.com> | 2011-10-28 16:26:36 -0600 |
---|---|---|
committer | Jesse Barnes <jbarnes@virtuousgeek.org> | 2012-01-06 12:10:59 -0800 |
commit | 8d88a432f497635d4330b234eb6bceeb4f0a0bc4 (patch) | |
tree | e1e7ed4fd3741b4f047cb8a5943d21bae304aed9 | |
parent | e30f99222fd7b701ba7bc564722bb284ab2b2317 (diff) | |
download | linux-3.10-8d88a432f497635d4330b234eb6bceeb4f0a0bc4.tar.gz linux-3.10-8d88a432f497635d4330b234eb6bceeb4f0a0bc4.tar.bz2 linux-3.10-8d88a432f497635d4330b234eb6bceeb4f0a0bc4.zip |
microblaze/PCI: fix pci_bus_for_each_resource() usage
The pci_bus_for_each_resource() iterator sets "res" itself, so there's
no need to look it up in the bus->resource[] table.
Logically part of 89a74ecccd and 8a66da71fa.
CC: Michal Simek <monstr@monstr.eu>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
-rw-r--r-- | arch/microblaze/pci/pci-common.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/arch/microblaze/pci/pci-common.c b/arch/microblaze/pci/pci-common.c index 52b643dd31b..a720f664073 100644 --- a/arch/microblaze/pci/pci-common.c +++ b/arch/microblaze/pci/pci-common.c @@ -1024,7 +1024,6 @@ static void __devinit pcibios_fixup_bridge(struct pci_bus *bus) struct pci_dev *dev = bus->self; pci_bus_for_each_resource(bus, res, i) { - res = bus->resource[i]; if (!res) continue; if (!res->flags) @@ -1224,7 +1223,6 @@ void pcibios_allocate_bus_resources(struct pci_bus *bus) pci_domain_nr(bus), bus->number); pci_bus_for_each_resource(bus, res, i) { - res = bus->resource[i]; if (!res || !res->flags || res->start > res->end || res->parent) continue; |