diff options
author | Philippe Mathieu-Daudé | 2020-05-26 08:22:46 +0200 |
---|---|---|
committer | Gerd Hoffmann | 2020-05-28 11:38:57 +0200 |
commit | eeb1168032a1f6dfc7eb5897c3bf4e53fdc28b98 (patch) | |
tree | 59047756778dc4ed61ea8961f1ebae2e9a5ee1f5 /hw/display/dpcd.c | |
parent | hw/display/dpcd: Fix memory region size (diff) | |
download | qemu-eeb1168032a1f6dfc7eb5897c3bf4e53fdc28b98.tar.gz qemu-eeb1168032a1f6dfc7eb5897c3bf4e53fdc28b98.tar.xz qemu-eeb1168032a1f6dfc7eb5897c3bf4e53fdc28b98.zip |
hw/display/dpcd: Convert debug printf()s to trace events
Convert DPRINTF() to trace events and remove ifdef'ry.
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Alistair Francis <alistair.francis@wdc.com>
Message-id: 20200526062252.19852-9-f4bug@amsat.org
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'hw/display/dpcd.c')
-rw-r--r-- | hw/display/dpcd.c | 16 |
1 files changed, 3 insertions, 13 deletions
diff --git a/hw/display/dpcd.c b/hw/display/dpcd.c index 0c1b7b35fb..64463654a1 100644 --- a/hw/display/dpcd.c +++ b/hw/display/dpcd.c @@ -32,16 +32,7 @@ #include "hw/misc/auxbus.h" #include "migration/vmstate.h" #include "hw/display/dpcd.h" - -#ifndef DEBUG_DPCD -#define DEBUG_DPCD 0 -#endif - -#define DPRINTF(fmt, ...) do { \ - if (DEBUG_DPCD) { \ - qemu_log("dpcd: " fmt, ## __VA_ARGS__); \ - } \ -} while (0) +#include "trace.h" #define DPCD_READABLE_AREA 0x600 @@ -70,8 +61,8 @@ static uint64_t dpcd_read(void *opaque, hwaddr offset, unsigned size) offset); ret = 0; } + trace_dpcd_read(offset, ret); - DPRINTF("read 0x%" PRIX8 " @0x%" HWADDR_PRIX "\n", ret, offset); return ret; } @@ -80,8 +71,7 @@ static void dpcd_write(void *opaque, hwaddr offset, uint64_t value, { DPCDState *e = DPCD(opaque); - DPRINTF("write 0x%" PRIX8 " @0x%" HWADDR_PRIX "\n", (uint8_t)value, offset); - + trace_dpcd_write(offset, value); if (offset < DPCD_READABLE_AREA) { e->dpcd_info[offset] = value; } else { |