aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/pci/host
diff options
context:
space:
mode:
authorRafael J. Wysocki <rafael.j.wysocki@intel.com>2015-02-10 10:05:16 -0500
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>2015-02-10 10:05:16 -0500
commit8fbcf5ecb336eb6da560f08d60e95b51d318795c (patch)
tree77a1b947838d60edd0e81d37327985de2e842b68 /drivers/pci/host
parentd23209680291dad6c79f1a6f187697c3884d554d (diff)
parent5c493df25a0d9e0c3bda742250ecfc5953bf4ccd (diff)
Merge branch 'acpi-resources'
* acpi-resources: (23 commits) Merge branch 'pci/host-generic' of git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci into acpi-resources x86/irq, ACPI: Implement ACPI driver to support IOAPIC hotplug ACPI: Add interfaces to parse IOAPIC ID for IOAPIC hotplug x86/PCI: Refine the way to release PCI IRQ resources x86/PCI/ACPI: Use common ACPI resource interfaces to simplify implementation x86/PCI: Fix the range check for IO resources PCI: Use common resource list management code instead of private implementation resources: Move struct resource_list_entry from ACPI into resource core ACPI: Introduce helper function acpi_dev_filter_resource_type() ACPI: Add field offset to struct resource_list_entry ACPI: Translate resource into master side address for bridge window resources ACPI: Return translation offset when parsing ACPI address space resources ACPI: Enforce stricter checks for address space descriptors ACPI: Set flag IORESOURCE_UNSET for unassigned resources ACPI: Normalize return value of resource parser functions ACPI: Fix a bug in parsing ACPI Memory24 resource ACPI: Add prefetch decoding to the address space parser ACPI: Move the window flag logic to the combined parser ACPI: Unify the parsing of address_space and ext_address_space ACPI: Let the parser return false for disabled resources ...
Diffstat (limited to 'drivers/pci/host')
-rw-r--r--drivers/pci/host/pci-host-generic.c4
-rw-r--r--drivers/pci/host/pci-xgene.c4
-rw-r--r--drivers/pci/host/pcie-xilinx.c4
3 files changed, 6 insertions, 6 deletions
diff --git a/drivers/pci/host/pci-host-generic.c b/drivers/pci/host/pci-host-generic.c
index 6eb1aa75bd37..aee3c620ecf9 100644
--- a/drivers/pci/host/pci-host-generic.c
+++ b/drivers/pci/host/pci-host-generic.c
@@ -149,14 +149,14 @@ static int gen_pci_parse_request_of_pci_ranges(struct gen_pci *pci)
149 struct device *dev = pci->host.dev.parent; 149 struct device *dev = pci->host.dev.parent;
150 struct device_node *np = dev->of_node; 150 struct device_node *np = dev->of_node;
151 resource_size_t iobase; 151 resource_size_t iobase;
152 struct pci_host_bridge_window *win; 152 struct resource_entry *win;
153 153
154 err = of_pci_get_host_bridge_resources(np, 0, 0xff, &pci->resources, 154 err = of_pci_get_host_bridge_resources(np, 0, 0xff, &pci->resources,
155 &iobase); 155 &iobase);
156 if (err) 156 if (err)
157 return err; 157 return err;
158 158
159 list_for_each_entry(win, &pci->resources, list) { 159 resource_list_for_each_entry(win, &pci->resources) {
160 struct resource *parent, *res = win->res; 160 struct resource *parent, *res = win->res;
161 161
162 switch (resource_type(res)) { 162 switch (resource_type(res)) {
diff --git a/drivers/pci/host/pci-xgene.c b/drivers/pci/host/pci-xgene.c
index b1d0596457c5..a704257bab7f 100644
--- a/drivers/pci/host/pci-xgene.c
+++ b/drivers/pci/host/pci-xgene.c
@@ -401,11 +401,11 @@ static int xgene_pcie_map_ranges(struct xgene_pcie_port *port,
401 struct list_head *res, 401 struct list_head *res,
402 resource_size_t io_base) 402 resource_size_t io_base)
403{ 403{
404 struct pci_host_bridge_window *window; 404 struct resource_entry *window;
405 struct device *dev = port->dev; 405 struct device *dev = port->dev;
406 int ret; 406 int ret;
407 407
408 list_for_each_entry(window, res, list) { 408 resource_list_for_each_entry(window, res) {
409 struct resource *res = window->res; 409 struct resource *res = window->res;
410 u64 restype = resource_type(res); 410 u64 restype = resource_type(res);
411 411
diff --git a/drivers/pci/host/pcie-xilinx.c b/drivers/pci/host/pcie-xilinx.c
index ef3ebaf9a738..601261df7663 100644
--- a/drivers/pci/host/pcie-xilinx.c
+++ b/drivers/pci/host/pcie-xilinx.c
@@ -737,7 +737,7 @@ static int xilinx_pcie_parse_and_add_res(struct xilinx_pcie_port *port)
737 resource_size_t offset; 737 resource_size_t offset;
738 struct of_pci_range_parser parser; 738 struct of_pci_range_parser parser;
739 struct of_pci_range range; 739 struct of_pci_range range;
740 struct pci_host_bridge_window *win; 740 struct resource_entry *win;
741 int err = 0, mem_resno = 0; 741 int err = 0, mem_resno = 0;
742 742
743 /* Get the ranges */ 743 /* Get the ranges */
@@ -807,7 +807,7 @@ static int xilinx_pcie_parse_and_add_res(struct xilinx_pcie_port *port)
807 807
808free_resources: 808free_resources:
809 release_child_resources(&iomem_resource); 809 release_child_resources(&iomem_resource);
810 list_for_each_entry(win, &port->resources, list) 810 resource_list_for_each_entry(win, &port->resources)
811 devm_kfree(dev, win->res); 811 devm_kfree(dev, win->res);
812 pci_free_resource_list(&port->resources); 812 pci_free_resource_list(&port->resources);
813 813