diff options
author | Philippe Mathieu-Daudé | 2018-06-26 18:50:41 +0200 |
---|---|---|
committer | Peter Maydell | 2018-06-26 18:50:41 +0200 |
commit | 9194524b0d555dbf0b1cefb303cc362a0458586f (patch) | |
tree | e5abf7bc47a0f96b45c87715acbf9ea921ea82d5 | |
parent | hw/arm/omap: Use qemu_log_mask(GUEST_ERROR) instead of fprintf (diff) | |
download | qemu-9194524b0d555dbf0b1cefb303cc362a0458586f.tar.gz qemu-9194524b0d555dbf0b1cefb303cc362a0458586f.tar.xz qemu-9194524b0d555dbf0b1cefb303cc362a0458586f.zip |
hw/arm/stellaris: Use qemu_log_mask(UNIMP) instead of fprintf
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Message-id: 20180624040609.17572-11-f4bug@amsat.org
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
-rw-r--r-- | hw/arm/stellaris.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/arm/stellaris.c b/hw/arm/stellaris.c index a8f1f6a912..d06e366402 100644 --- a/hw/arm/stellaris.c +++ b/hw/arm/stellaris.c @@ -560,7 +560,7 @@ static void ssys_write(void *opaque, hwaddr offset, case 0x040: /* SRCR0 */ case 0x044: /* SRCR1 */ case 0x048: /* SRCR2 */ - fprintf(stderr, "Peripheral reset not implemented\n"); + qemu_log_mask(LOG_UNIMP, "Peripheral reset not implemented\n"); break; case 0x054: /* IMC */ s->int_mask = value & 0x7f; |