summaryrefslogtreecommitdiff
path: root/hw/misc/macio
diff options
context:
space:
mode:
authorAlexander Graf <agraf@suse.de>2013-06-30 01:53:05 +0200
committerAlexander Graf <agraf@suse.de>2013-07-11 18:51:24 +0200
commit58c0c311838dd2c6622a156b4d261aa127c510dd (patch)
treedc3022196376d61f73229da3299db5d369ab354a /hw/misc/macio
parent33ce36bb33cc00ac3070d49e17b4afed62b412a8 (diff)
downloadqemu-58c0c311838dd2c6622a156b4d261aa127c510dd.tar.gz
PPC: dbdma: Fix debug print
There was a debug print that didn't compile for me because the format and the arguments weren't in sync. Fix it up. Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'hw/misc/macio')
-rw-r--r--hw/misc/macio/mac_dbdma.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/hw/misc/macio/mac_dbdma.c b/hw/misc/macio/mac_dbdma.c
index 0d7f40bf32..3b1e97efbe 100644
--- a/hw/misc/macio/mac_dbdma.c
+++ b/hw/misc/macio/mac_dbdma.c
@@ -720,7 +720,8 @@ static void dbdma_write(void *opaque, hwaddr addr,
DBDMA_channel *ch = &s->channels[channel];
int reg = (addr - (channel << DBDMA_CHANNEL_SHIFT)) >> 2;
- DBDMA_DPRINTF("writel 0x" TARGET_FMT_plx " <= 0x%08x\n", addr, value);
+ DBDMA_DPRINTF("writel 0x" TARGET_FMT_plx " <= 0x%08"PRIx64"\n",
+ addr, value);
DBDMA_DPRINTF("channel 0x%x reg 0x%x\n",
(uint32_t)addr >> DBDMA_CHANNEL_SHIFT, reg);