aboutsummaryrefslogtreecommitdiff
path: root/hw/pci-host
diff options
context:
space:
mode:
authorAlyssa Milburn <fuzzie@fuzzie.org>2016-02-04 18:40:57 +0000
committerDavid Gibson <david@gibson.dropbear.id.au>2016-02-17 09:59:29 +1100
commit2f448e415f364d0ec4c5556993e44ca183e31c5c (patch)
treeef3a68fb57d5da1f12c2146781efa166dc5d33e9 /hw/pci-host
parent3fc63c3f339a61f4e4526f88150927424744f687 (diff)
downloadqemu-2f448e415f364d0ec4c5556993e44ca183e31c5c.zip
qemu-2f448e415f364d0ec4c5556993e44ca183e31c5c.tar.gz
qemu-2f448e415f364d0ec4c5556993e44ca183e31c5c.tar.bz2
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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/pci-host/uninorth.c b/hw/pci-host/uninorth.c
index 40a2e3e..15b1054 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;
}