aboutsummaryrefslogtreecommitdiff
path: root/hw/display/trace-events
diff options
context:
space:
mode:
authorGerd Hoffmann <kraxel@redhat.com>2019-03-12 09:11:43 +0100
committerGerd Hoffmann <kraxel@redhat.com>2019-03-18 13:10:17 +0100
commita223b478cb5bb940481b16be891e4b51279b642c (patch)
tree01fa61ad77675db5dff1c8ec598a3496987e6020 /hw/display/trace-events
parentd4e65539e570d5872003710b5a1064489911d33d (diff)
downloadqemu-a223b478cb5bb940481b16be891e4b51279b642c.zip
qemu-a223b478cb5bb940481b16be891e4b51279b642c.tar.gz
qemu-a223b478cb5bb940481b16be891e4b51279b642c.tar.bz2
ati-vga: fix tracing
HWADDR_PRIx can't be used in tracing, use PRIx64 instead. Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Reviewed-by: Markus Armbruster <armbru@redhat.com> Reviewed-by: Daniel P. Berrangé <berrange@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com> Message-id: 20190312081143.24850-1-kraxel@redhat.com
Diffstat (limited to 'hw/display/trace-events')
-rw-r--r--hw/display/trace-events4
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/display/trace-events b/hw/display/trace-events
index 80993cc..c098543 100644
--- a/hw/display/trace-events
+++ b/hw/display/trace-events
@@ -140,5 +140,5 @@ sii9022_write_reg(uint8_t addr, uint8_t val) "addr 0x%02x, val 0x%02x"
sii9022_switch_mode(const char *mode) "mode: %s"
# hw/display/ati*.c
-ati_mm_read(unsigned int size, uint64_t addr, const char *name, uint64_t val) "%u 0x%"HWADDR_PRIx " %s -> 0x%"PRIx64
-ati_mm_write(unsigned int size, uint64_t addr, const char *name, uint64_t val) "%u 0x%"HWADDR_PRIx " %s <- 0x%"PRIx64
+ati_mm_read(unsigned int size, uint64_t addr, const char *name, uint64_t val) "%u 0x%"PRIx64 " %s -> 0x%"PRIx64
+ati_mm_write(unsigned int size, uint64_t addr, const char *name, uint64_t val) "%u 0x%"PRIx64 " %s <- 0x%"PRIx64