aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/pci/setup-bus.c
diff options
context:
space:
mode:
authorYinghai Lu <yinghai@kernel.org>2010-02-28 18:49:39 -0500
committerLinus Torvalds <torvalds@linux-foundation.org>2010-03-01 10:41:55 -0500
commit9a928660c9dcaff568c9d379655c5aa16fb981f8 (patch)
treedf244e4ebf47647b59dfafd4c5f999cf67309e48 /drivers/pci/setup-bus.c
parent30ff056c42c665b9ea535d8515890857ae382540 (diff)
pci: don't reassign to ROM res if it is not going to be enabled
A ROM resource that doesn't fit should not cause us to try to re-assign all the bus resources. Nobody generally cares, and re-assigning is going to just cause way more troubles than it tries to solve. Signed-off-by: Yinghai Lu <yinghai@kernel.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/pci/setup-bus.c')
-rw-r--r--drivers/pci/setup-bus.c12
1 files changed, 10 insertions, 2 deletions
diff --git a/drivers/pci/setup-bus.c b/drivers/pci/setup-bus.c
index bf32f07c4efb..4fe36d2e1049 100644
--- a/drivers/pci/setup-bus.c
+++ b/drivers/pci/setup-bus.c
@@ -101,9 +101,17 @@ static void __assign_resources_sorted(struct resource_list *head,
101 for (list = head->next; list;) { 101 for (list = head->next; list;) {
102 res = list->res; 102 res = list->res;
103 idx = res - &list->dev->resource[0]; 103 idx = res - &list->dev->resource[0];
104
104 if (pci_assign_resource(list->dev, idx)) { 105 if (pci_assign_resource(list->dev, idx)) {
105 if (fail_head && !pci_is_root_bus(list->dev->bus)) 106 if (fail_head && !pci_is_root_bus(list->dev->bus)) {
106 add_to_failed_list(fail_head, list->dev, res); 107 /*
108 * if the failed res is for ROM BAR, and it will
109 * be enabled later, don't add it to the list
110 */
111 if (!((idx == PCI_ROM_RESOURCE) &&
112 (!(res->flags & IORESOURCE_ROM_ENABLE))))
113 add_to_failed_list(fail_head, list->dev, res);
114 }
107 res->start = 0; 115 res->start = 0;
108 res->end = 0; 116 res->end = 0;
109 res->flags = 0; 117 res->flags = 0;