- 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:
Eric Biederman 2003-07-12 01:38:11 +00:00
parent b3e9b4a534
commit 542fe8056b
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}