Adapt function calls to Ron's new naming scheme. (trivial)
Signed-off-by: Stefan Reinauer <stepan@coresystems.de> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://coreboot.org/repository/LinuxBIOSv3@153 f3766cd6-281f-0410-b1cd-43a5c92072e9
This commit is contained in:
parent
1a4be55c7f
commit
b6eaa40545
1 changed files with 2 additions and 2 deletions
|
|
@ -569,7 +569,7 @@ void pci_dev_set_resources(struct device *dev)
|
|||
struct bus *bus;
|
||||
bus = &dev->link[link];
|
||||
if (bus->children) {
|
||||
assign_resources(bus);
|
||||
phase4_assign_resources(bus);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -1077,7 +1077,7 @@ unsigned int pci_scan_bus(struct bus *bus,
|
|||
* scan the bus behind that child.
|
||||
*/
|
||||
for(child = bus->children; child; child = child->sibling) {
|
||||
max = scan_bus(child, max);
|
||||
max = dev_phase3_scan(child, max);
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue