From: Peter Maydell Date: Thu, 18 Oct 2012 13:11:39 +0000 (+0100) Subject: hw/pl190: Use LOG_GUEST_ERROR X-Git-Tag: v1.3.0-rc0~206 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=fd271e81aa7334b973285f5c94a4f8ab265df683;p=qemu.git hw/pl190: Use LOG_GUEST_ERROR If the guest attempts an offset to a nonexistent register, just log this via LOG_GUEST_ERROR rather than killing QEMU with a hw_error. Signed-off-by: Peter Maydell Signed-off-by: Blue Swirl --- diff --git a/hw/pl190.c b/hw/pl190.c index 7332f4dba..961da5b3a 100644 --- a/hw/pl190.c +++ b/hw/pl190.c @@ -143,7 +143,8 @@ static uint64_t pl190_read(void *opaque, target_phys_addr_t offset, case 13: /* DEFVECTADDR */ return s->vect_addr[16]; default: - hw_error("pl190_read: Bad offset %x\n", (int)offset); + qemu_log_mask(LOG_GUEST_ERROR, + "pl190_read: Bad offset %x\n", (int)offset); return 0; } } @@ -202,7 +203,8 @@ static void pl190_write(void *opaque, target_phys_addr_t offset, } break; default: - hw_error("pl190_write: Bad offset %x\n", (int)offset); + qemu_log_mask(LOG_GUEST_ERROR, + "pl190_write: Bad offset %x\n", (int)offset); return; } pl190_update(s);