From: Philippe Mathieu-Daudé Date: Sat, 6 Jun 2020 07:02:16 +0000 (+0200) Subject: hw/misc/auxbus: Use qemu_log_mask(UNIMP) instead of debug printf X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=d263425bce8620d608410e68e492adb7ef072465;p=qemu.git 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é Reviewed-by: Richard Henderson Reviewed-by: Thomas Huth Message-Id: <20200606070216.30952-1-f4bug@amsat.org> Signed-off-by: Laurent Vivier --- 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; }