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:
Stefan Reinauer 2007-02-27 21:36:51 +00:00
commit b6eaa40545

View file

@ -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);
}
/*