Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 3847
b: refs/heads/master
c: 542df5d
h: refs/heads/master
i:
  3845: b4760db
  3843: c6a9a17
  3839: 8badf56
v: v3
  • Loading branch information
Rajesh Shah authored and Greg Kroah-Hartman committed Jun 28, 2005
1 parent 831809f commit 8f8e89a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 091ca9f06382e46d77213c35a97f7d0be9e350d2
refs/heads/master: 542df5de56a23bf2d94b75e2b304ab0e5a5508a8
5 changes: 4 additions & 1 deletion trunk/drivers/pci/setup-bus.c
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,10 @@ pbus_assign_resources_sorted(struct pci_bus *bus)
for (list = head.next; list;) {
res = list->res;
idx = res - &list->dev->resource[0];
pci_assign_resource(list->dev, idx);
if (pci_assign_resource(list->dev, idx)) {
res->start = 0;
res->flags = 0;
}
tmp = list;
list = list->next;
kfree(tmp);
Expand Down

0 comments on commit 8f8e89a

Please sign in to comment.