From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:44022) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TRN0Z-00069I-Fv for qemu-devel@nongnu.org; Thu, 25 Oct 2012 08:58:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TRN0Y-0005Hk-7s for qemu-devel@nongnu.org; Thu, 25 Oct 2012 08:57:59 -0400 Received: from 38.0.169.217.in-addr.arpa ([217.169.0.38]:40618 helo=mnementh.archaic.org.uk) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TRN0Y-0005Ds-1F for qemu-devel@nongnu.org; Thu, 25 Oct 2012 08:57:58 -0400 From: Peter Maydell Date: Thu, 25 Oct 2012 13:57:40 +0100 Message-Id: <1351169867-5466-6-git-send-email-peter.maydell@linaro.org> In-Reply-To: <1351169867-5466-1-git-send-email-peter.maydell@linaro.org> References: <1351169867-5466-1-git-send-email-peter.maydell@linaro.org> Subject: [Qemu-devel] [PATCH 05/12] hw/pl190: Use LOG_UNIMP rather than hw_error() List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: patches@linaro.org Use LOG_UNIMP to report attempts to use the unimplemented test mode. Signed-off-by: Peter Maydell --- hw/pl190.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/pl190.c b/hw/pl190.c index 213229b..4019930 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: -- 1.7.9.5