Commit f134f251 authored by Pavel Fedin's avatar Pavel Fedin Committed by Rob Herring

PCI: of: Ignore resources with failed translation

This patch allows PCI host controller to function even if part of resources
is unusable for some reason. An example is non-LPAE kernel on a machine
which has some 64-bit resources. Unusable resources will be just skipped
instead of a complete failure.
Signed-off-by: default avatarPavel Fedin <p.fedin@samsung.com>
Signed-off-by: default avatarRob Herring <robh@kernel.org>
parent 4af97106
...@@ -223,8 +223,10 @@ int of_pci_get_host_bridge_resources(struct device_node *dev, ...@@ -223,8 +223,10 @@ int of_pci_get_host_bridge_resources(struct device_node *dev,
} }
err = of_pci_range_to_resource(&range, dev, res); err = of_pci_range_to_resource(&range, dev, res);
if (err) if (err) {
goto conversion_failed; kfree(res);
continue;
}
if (resource_type(res) == IORESOURCE_IO) { if (resource_type(res) == IORESOURCE_IO) {
if (!io_base) { if (!io_base) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment