From 542fe8056bc0566a4cb5fa2e4c490aaeab673290 Mon Sep 17 00:00:00 2001 From: Eric Biederman Date: Sat, 12 Jul 2003 01:38:11 +0000 Subject: [PATCH] - Small typo fix in pci_ops.c git-svn-id: svn://svn.coreboot.org/coreboot/trunk@948 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- src/arch/i386/lib/pci_ops.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }