From: Peter Maydell Date: Tue, 30 Oct 2012 07:45:09 +0000 (+0000) Subject: hw/pl190: Use LOG_UNIMP rather than hw_error() X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=2d746989bf5e146df9205de3fd4ad0d48a318165;p=qemu.git hw/pl190: Use LOG_UNIMP rather than hw_error() Use LOG_UNIMP to report attempts to use the unimplemented test mode. Signed-off-by: Peter Maydell --- diff --git a/hw/pl190.c b/hw/pl190.c index 213229b566..40199302a9 100644 --- a/hw/pl190.c +++ b/hw/pl190.c @@ -199,7 +199,7 @@ static void pl190_write(void *opaque, hwaddr offset, break; case 0xc0: /* ITCR */ if (val) { - hw_error("pl190: Test mode not implemented\n"); + qemu_log_mask(LOG_UNIMP, "pl190: Test mode not implemented\n"); } break; default: