diff options
author | Li-Ta Lo <ollie@lanl.gov> | 2004-07-08 16:54:20 +0000 |
---|---|---|
committer | Li-Ta Lo <ollie@lanl.gov> | 2004-07-08 16:54:20 +0000 |
commit | 9ab91f5acbe54bf3298e81e69f2eb3079ffb3c54 (patch) | |
tree | e0baf9e6670a5b45c7faeb7e0a908ad8e8c90a51 /src/devices/pci_device.c | |
parent | badf114438d2518e2d33363603e46c138f1cfd2c (diff) |
code reformat
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1621 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/devices/pci_device.c')
-rw-r--r-- | src/devices/pci_device.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/devices/pci_device.c b/src/devices/pci_device.c index f40b4d8adf..785bf33515 100644 --- a/src/devices/pci_device.c +++ b/src/devices/pci_device.c @@ -508,6 +508,8 @@ static struct device *pci_scan_get_dev(struct device **list, { struct device *dev = 0; + printk_debug("%s, looking for devfn: %02x.%01x\n", __FUNCTION__, + devfn >> 3, devfn & 7); for (; *list; list = &(*list)->sibling) { if ((*list)->path.type != DEVICE_PATH_PCI) { printk_err("child %s not a pci device\n", @@ -523,6 +525,8 @@ static struct device *pci_scan_get_dev(struct device **list, } } + printk_debug("%s, found dev %08x\n", __FUNCTION__, dev); + /* FIXME: why are we doing this ? Isn't there some order between the * structures before ? */ if (dev) { @@ -738,11 +742,11 @@ unsigned int pci_scan_bridge(struct device *dev, unsigned int max) ((unsigned int) (bus->secondary) << 8) | ((unsigned int) (bus->subordinate) << 16)); pci_write_config32(dev, PCI_PRIMARY_BUS, buses); - + /* Now we can scan all subordinate buses i.e. the buses behind the * bridge */ max = pci_scan_bus(bus, 0x00, 0xff, max); - + /* We know the number of buses behind this bridge. Set the subordinate * bus number to its real value */ bus->subordinate = max; |