From b6eaa4054535b0c82e596cf3c464bc9714289c3a Mon Sep 17 00:00:00 2001 From: Stefan Reinauer Date: Tue, 27 Feb 2007 21:36:51 +0000 Subject: [PATCH] Adapt function calls to Ron's new naming scheme. (trivial) Signed-off-by: Stefan Reinauer Acked-by: Stefan Reinauer git-svn-id: svn://coreboot.org/repository/LinuxBIOSv3@153 f3766cd6-281f-0410-b1cd-43a5c92072e9 --- device/pci_device.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/device/pci_device.c b/device/pci_device.c index 0664225c22..3d9cb7d78b 100644 --- a/device/pci_device.c +++ b/device/pci_device.c @@ -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); } /*