summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhilippe Mathieu-Daudé2018-06-26 18:50:41 +0200
committerPeter Maydell2018-06-26 18:50:41 +0200
commitbc281efff60f81fdde6014daa24ca81484b42814 (patch)
tree1da168d08633de43bbffbc29b6e52b82cc1994cb
parenthw/net/smc91c111: Use qemu_log_mask(UNIMP) instead of fprintf (diff)
downloadqemu-bc281efff60f81fdde6014daa24ca81484b42814.tar.gz
qemu-bc281efff60f81fdde6014daa24ca81484b42814.tar.xz
qemu-bc281efff60f81fdde6014daa24ca81484b42814.zip
hw/arm/stellaris: Fix gptm_write() error message
Missed in df3692e04b2. Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Message-id: 20180624040609.17572-16-f4bug@amsat.org Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
-rw-r--r--hw/arm/stellaris.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/arm/stellaris.c b/hw/arm/stellaris.c
index d06e366402..42baa768b2 100644
--- a/hw/arm/stellaris.c
+++ b/hw/arm/stellaris.c
@@ -294,7 +294,7 @@ static void gptm_write(void *opaque, hwaddr offset,
break;
default:
qemu_log_mask(LOG_GUEST_ERROR,
- "GPTM: read at bad offset 0x%x\n", (int)offset);
+ "GPTM: write at bad offset 0x%x\n", (int)offset);
}
gptm_update_irq(s);
}