diff options
author | Philippe Mathieu-Daudé <f4bug@amsat.org> | 2020-06-06 09:02:16 +0200 |
---|---|---|
committer | Laurent Vivier <laurent@vivier.eu> | 2020-06-09 19:14:47 +0200 |
commit | d263425bce8620d608410e68e492adb7ef072465 (patch) | |
tree | 53fddaaa1af1a45b8097daca746fc9efcbd28387 /hw/misc | |
parent | 18cdeb72bb9ad7a574be68175e72068ced70e443 (diff) |
hw/misc/auxbus: Use qemu_log_mask(UNIMP) instead of debug printf
Replace a deprecated DPRINTF() call by qemu_log_mask(LOG_UNIMP).
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Message-Id: <20200606070216.30952-1-f4bug@amsat.org>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'hw/misc')
-rw-r--r-- | hw/misc/auxbus.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/misc/auxbus.c b/hw/misc/auxbus.c index f8e7b97971..06aabf20c5 100644 --- a/hw/misc/auxbus.c +++ b/hw/misc/auxbus.c @@ -196,7 +196,7 @@ AUXReply aux_request(AUXBus *bus, AUXCommand cmd, uint32_t address, } break; default: - DPRINTF("Not implemented!\n"); + qemu_log_mask(LOG_UNIMP, "AUX cmd=%u not implemented\n", cmd); return AUX_NACK; } |