X-Git-Url: http://wien.tomnetworks.com/gitweb/?p=coreboot.git;a=blobdiff_plain;f=src%2Farch%2Fx86%2Flib%2Fpci_ops_conf1.c;h=be1abd70871269e302040274f5ea0563fbb2351f;hp=266a9cc9dc56794a9156dc6bdf365f884e0119ed;hb=5419d8b6bc32273faa65caf03e6771c7f4fc57fe;hpb=0a2ce8cfc1ff606c60ad8431afd662b1b5beb0e5 diff --git a/src/arch/x86/lib/pci_ops_conf1.c b/src/arch/x86/lib/pci_ops_conf1.c index 266a9cc9d..be1abd708 100644 --- a/src/arch/x86/lib/pci_ops_conf1.c +++ b/src/arch/x86/lib/pci_ops_conf1.c @@ -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); }