X-Git-Url: http://wien.tomnetworks.com/gitweb/?p=coreboot.git;a=blobdiff_plain;f=src%2Fdevices%2Fpci_ops.c;h=2dae50e4eb86d97e0eafe142e9a5be12bf3b08cb;hp=07da30034ffffeeef29dcadc5797b9cefa30c5be;hb=5419d8b6bc32273faa65caf03e6771c7f4fc57fe;hpb=0a2ce8cfc1ff606c60ad8431afd662b1b5beb0e5 diff --git a/src/devices/pci_ops.c b/src/devices/pci_ops.c index 07da30034..2dae50e4e 100644 --- a/src/devices/pci_ops.c +++ b/src/devices/pci_ops.c @@ -78,6 +78,7 @@ u16 pci_read_config16(device_t dev, unsigned int where) u32 pci_read_config32(device_t dev, unsigned int where) { struct bus *pbus = get_pbus(dev); + printk(BIOS_INFO, "%s: ops_pci_bus(pbus)->read32: 0x%08x\n", __func__, (unsigned int) ops_pci_bus(pbus)->read32); return ops_pci_bus(pbus)->read32(pbus, dev->bus->secondary, dev->path.pci.devfn, where); }