summaryrefslogtreecommitdiffstats
path: root/device
diff options
context:
space:
mode:
Diffstat (limited to 'device')
-rw-r--r--device/pci_device.c3
-rw-r--r--device/pci_rom.c2
2 files changed, 3 insertions, 2 deletions
diff --git a/device/pci_device.c b/device/pci_device.c
index c76092dfddb2..c5cee3c540e9 100644
--- a/device/pci_device.c
+++ b/device/pci_device.c
@@ -1304,7 +1304,8 @@ unsigned int do_pci_scan_bridge(struct device *dev, unsigned int max,
pci_write_config32(dev, PCI_PRIMARY_BUS, buses);
pci_write_config16(dev, PCI_COMMAND, cr);
- printk(BIOS_DEBUG, "%s DONE\n", __func__);
+ printk(BIOS_DEBUG, "%s DONE: [%x, %x, %x]\n", __func__,
+ dev->bus->secondary, bus->secondary, bus->subordinate);
printk(BIOS_SPEW, "%s returns max %d\n", __func__, max);
return max;
}
diff --git a/device/pci_rom.c b/device/pci_rom.c
index 48dd1e0635ff..ed7c8862e36e 100644
--- a/device/pci_rom.c
+++ b/device/pci_rom.c
@@ -47,7 +47,7 @@ struct rom_header *pci_rom_probe(struct device *dev)
init_archive(&archive);
sprintf(pcifile, "pci%04x,%04x.rom", dev->id.pci.vendor,
dev->id.pci.device);
-
+ printk(BIOS_DEBUG, "pci_rom_probe: search for %s\n", pcifile);
ret = find_file(&archive, pcifile, &result);
if (ret) {
printk(BIOS_INFO, "No option rom for onboard device.\n");