- Small typo fix in pci_ops.c
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@948 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
parent
b3e9b4a534
commit
542fe8056b
|
@ -240,7 +240,7 @@ uint32_t pci_read_config32(device_t dev, unsigned where)
|
|||
uint32_t value;
|
||||
value = conf->read32(dev->bus->secondary, dev->devfn, where);
|
||||
printk_spew( "Read config 32 bus %d,devfn 0x%x,reg 0x%x,val 0x%x\n",
|
||||
dev->bus->secondary, dev->devfn, where, *val);
|
||||
dev->bus->secondary, dev->devfn, where, value);
|
||||
return value;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue