qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH] hw/dma/xilinx_axidma: debug printf fixups


From: Andrew Jones
Subject: [Qemu-devel] [PATCH] hw/dma/xilinx_axidma: debug printf fixups
Date: Tue, 5 Jan 2016 14:22:24 +0100

(Found by grepping for broken PRI users.)

Signed-off-by: Andrew Jones <address@hidden>
---
 hw/dma/xilinx_axidma.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/hw/dma/xilinx_axidma.c b/hw/dma/xilinx_axidma.c
index b1cfa11356a26..2ab0772cd19ae 100644
--- a/hw/dma/xilinx_axidma.c
+++ b/hw/dma/xilinx_axidma.c
@@ -180,10 +180,10 @@ static inline int streamid_from_addr(hwaddr addr)
 #ifdef DEBUG_ENET
 static void stream_desc_show(struct SDesc *d)
 {
-    qemu_log("buffer_addr  = " PRIx64 "\n", d->buffer_address);
-    qemu_log("nxtdesc      = " PRIx64 "\n", d->nxtdesc);
-    qemu_log("control      = %x\n", d->control);
-    qemu_log("status       = %x\n", d->status);
+    qemu_log("buffer_addr  = 0x%" PRIx64 "\n", d->buffer_address);
+    qemu_log("nxtdesc      = 0x%" PRIx64 "\n", d->nxtdesc);
+    qemu_log("control      = 0x%x\n", d->control);
+    qemu_log("status       = 0x%x\n", d->status);
 }
 #endif
 
-- 
2.4.3




reply via email to

[Prev in Thread] Current Thread [Next in Thread]