diff options
author | Alyssa Milburn <fuzzie@fuzzie.org> | 2016-02-04 18:40:57 +0000 |
---|---|---|
committer | David Gibson <david@gibson.dropbear.id.au> | 2016-02-17 09:59:29 +1100 |
commit | 2f448e415f364d0ec4c5556993e44ca183e31c5c (patch) | |
tree | ef3a68fb57d5da1f12c2146781efa166dc5d33e9 /hw/pci-host | |
parent | 3fc63c3f339a61f4e4526f88150927424744f687 (diff) | |
download | qemu-2f448e415f364d0ec4c5556993e44ca183e31c5c.tar.gz qemu-2f448e415f364d0ec4c5556993e44ca183e31c5c.tar.bz2 qemu-2f448e415f364d0ec4c5556993e44ca183e31c5c.zip |
hw: fix some debug message format strings
Signed-off-by: Alyssa Milburn <fuzzie@fuzzie.org>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to 'hw/pci-host')
-rw-r--r-- | hw/pci-host/uninorth.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/pci-host/uninorth.c b/hw/pci-host/uninorth.c index 40a2e3e6b4..15b1054232 100644 --- a/hw/pci-host/uninorth.c +++ b/hw/pci-host/uninorth.c @@ -120,7 +120,7 @@ static void unin_data_write(void *opaque, hwaddr addr, { UNINState *s = opaque; PCIHostState *phb = PCI_HOST_BRIDGE(s); - UNIN_DPRINTF("write addr %" TARGET_FMT_plx " len %d val %"PRIx64"\n", + UNIN_DPRINTF("write addr " TARGET_FMT_plx " len %d val %"PRIx64"\n", addr, len, val); pci_data_write(phb->bus, unin_get_config_reg(phb->config_reg, addr), @@ -137,7 +137,7 @@ static uint64_t unin_data_read(void *opaque, hwaddr addr, val = pci_data_read(phb->bus, unin_get_config_reg(phb->config_reg, addr), len); - UNIN_DPRINTF("read addr %" TARGET_FMT_plx " len %d val %x\n", + UNIN_DPRINTF("read addr " TARGET_FMT_plx " len %d val %x\n", addr, len, val); return val; } |