diff options
author | Eric Biederman <ebiederm@xmission.com> | 2003-07-12 01:38:11 +0000 |
---|---|---|
committer | Eric Biederman <ebiederm@xmission.com> | 2003-07-12 01:38:11 +0000 |
commit | 542fe8056bc0566a4cb5fa2e4c490aaeab673290 (patch) | |
tree | 973642725a915382f55cbfab04c0cc2f2209ba2f /src/arch/i386 | |
parent | b3e9b4a534dd83be87d01bba0ce4fdb0bcc82bfd (diff) |
- Small typo fix in pci_ops.c
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@948 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/arch/i386')
-rw-r--r-- | src/arch/i386/lib/pci_ops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/i386/lib/pci_ops.c b/src/arch/i386/lib/pci_ops.c index 6924efdc0c..c3478ffa96 100644 --- a/src/arch/i386/lib/pci_ops.c +++ b/src/arch/i386/lib/pci_ops.c @@ -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; } |