| Submitter | Yinghai Lu |
|---|---|
| Date | Sept. 2, 2012, 9:47 p.m. |
| Message ID | <1346622458-30595-4-git-send-email-yinghai@kernel.org> |
| Download | mbox | patch |
| Permalink | /patch/181232/ |
| State | Superseded |
| Headers | show |
Comments
Patch
diff --git a/drivers/pci/setup-bus.c b/drivers/pci/setup-bus.c index fb50613..f0e959c 100644 --- a/drivers/pci/setup-bus.c +++ b/drivers/pci/setup-bus.c @@ -283,7 +283,7 @@ static void assign_requested_resources_sorted(struct list_head *head, idx = res - &dev_res->dev->resource[0]; if (resource_size(res) && pci_assign_resource(dev_res->dev, idx)) { - if (fail_head && !pci_is_root_bus(dev_res->dev->bus)) { + if (fail_head) { /* * if the failed res is for ROM BAR, and it will * be enabled later, don't add it to the list
We can stop according to try number now and do not need to use root_bus checking as stop sign anymore. Signed-off-by: Yinghai Lu <yinghai@kernel.org> --- drivers/pci/setup-bus.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)