aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYinghai Lu <yinghai@kernel.org>2012-09-17 22:11:33 -0700
committerYinghai Lu <yinghai@kernel.org>2012-09-17 22:11:33 -0700
commit332fd4a3ac4c54e2ab4d438b46a0fb4d7121f634 (patch)
tree7e7bc5825286606c374f134c53e6634f245d3904
parent836d463eb136b9ea4b4c97182c6137aaf2c6a8d9 (diff)
downloadlinux-yinghai-332fd4a3ac4c54e2ab4d438b46a0fb4d7121f634.tar.gz
PCI: Use correct type when freeing bus resource list
Should use struct pci_bus_resource instead of struct pci_host_bridge_window Signed-off-by: Yinghai Lu <yinghai@kernel.org>
-rw-r--r--drivers/pci/bus.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/drivers/pci/bus.c b/drivers/pci/bus.c
index 4b0970b46e0b8..6241fd05bd410 100644
--- a/drivers/pci/bus.c
+++ b/drivers/pci/bus.c
@@ -87,11 +87,15 @@ EXPORT_SYMBOL_GPL(pci_bus_resource_n);
void pci_bus_remove_resources(struct pci_bus *bus)
{
int i;
+ struct pci_bus_resource *bus_res, *tmp;
for (i = 0; i < PCI_BRIDGE_RESOURCE_NUM; i++)
bus->resource[i] = NULL;
- pci_free_resource_list(&bus->resources);
+ list_for_each_entry_safe(bus_res, tmp, &bus->resources, list) {
+ list_del(&bus_res->list);
+ kfree(bus_res);
+ }
}
/**