pci stuff: too much hax now, trying rd890 patch (not merged yet)
[coreboot.git] / src / arch / x86 / lib / pci_ops_conf1.c
index 266a9cc9dc56794a9156dc6bdf365f884e0119ed..be1abd70871269e302040274f5ea0563fbb2351f 100644 (file)
@@ -34,6 +34,7 @@ static uint16_t pci_conf1_read_config16(struct bus *pbus, int bus, int devfn,
 static uint32_t pci_conf1_read_config32(struct bus *pbus, int bus, int devfn,
                                        int where)
 {
+       printk(BIOS_INFO, "%s: bus: 0x%2x, devfn: 0x%2x, where: 0x%2x\n", __func__, bus, devfn, where);
        outl(CONFIG_CMD(bus, devfn, where), 0xCF8);
        return inl(0xCFC);
 }