From patchwork Thu Oct 25 12:57:40 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Peter Maydell X-Patchwork-Id: 12509 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id F0A6C23EFB for ; Thu, 25 Oct 2012 12:57:52 +0000 (UTC) Received: from mail-ia0-f180.google.com (mail-ia0-f180.google.com [209.85.210.180]) by fiordland.canonical.com (Postfix) with ESMTP id 9A079A18FEB for ; Thu, 25 Oct 2012 12:57:52 +0000 (UTC) Received: by mail-ia0-f180.google.com with SMTP id f6so1219548iag.11 for ; Thu, 25 Oct 2012 05:57:52 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-forwarded-to:x-forwarded-for:delivered-to:received-spf:from:to:cc :subject:date:message-id:x-mailer:in-reply-to:references :x-gm-message-state; bh=EPAMgO9oiGznEINPpnapcs5cOn23VLIZfsutIcuhiyc=; b=cZx82nW0/a28gzim2YVXDdRetRbezcwlpHafwueEosC5Jn98/zQr5M8O/keZ5rYqfH VQxozrhBYS4IxGjiI0F2wZKOIgloX+eVECu3uV0/Y6RRzszWvXTjfhqTAwRwJCLAf90g O3bIHtRvHXwryWP7s96DseXZnE3w2KXU3O2oZJ+rPmTxJ7pwamOnDoI19p54BMuYFT51 g/1XEzWQu3+bzUzM6dQXMLPgonXiuMh5KDXq7X/bM3sVDZbeCXPfzR0BrrLeN8l8wr/c 6oLe58O06xBQOuhwvCxRRDm7pkDzE6c5am90ggp92cI7uPQy/5DYJV2T5muDKns8L2Xn yUFA== Received: by 10.50.91.195 with SMTP id cg3mr4261262igb.57.1351169872339; Thu, 25 Oct 2012 05:57:52 -0700 (PDT) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.50.67.148 with SMTP id n20csp42917igt; Thu, 25 Oct 2012 05:57:51 -0700 (PDT) Received: by 10.180.79.100 with SMTP id i4mr10311859wix.12.1351169871170; Thu, 25 Oct 2012 05:57:51 -0700 (PDT) Received: from mnementh.archaic.org.uk (1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.d.1.0.0.b.8.0.1.0.0.2.ip6.arpa. [2001:8b0:1d0::1]) by mx.google.com with ESMTPS id gk8si1146973wib.0.2012.10.25.05.57.50 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 25 Oct 2012 05:57:51 -0700 (PDT) Received-SPF: neutral (google.com: 2001:8b0:1d0::1 is neither permitted nor denied by best guess record for domain of pm215@archaic.org.uk) client-ip=2001:8b0:1d0::1; Authentication-Results: mx.google.com; spf=neutral (google.com: 2001:8b0:1d0::1 is neither permitted nor denied by best guess record for domain of pm215@archaic.org.uk) smtp.mail=pm215@archaic.org.uk Received: from pm215 by mnementh.archaic.org.uk with local (Exim 4.72) (envelope-from ) id 1TRN0N-0001Ql-Ks; Thu, 25 Oct 2012 13:57:47 +0100 From: Peter Maydell To: qemu-devel@nongnu.org Cc: patches@linaro.org Subject: [PATCH 05/12] hw/pl190: Use LOG_UNIMP rather than hw_error() Date: Thu, 25 Oct 2012 13:57:40 +0100 Message-Id: <1351169867-5466-6-git-send-email-peter.maydell@linaro.org> X-Mailer: git-send-email 1.7.2.5 In-Reply-To: <1351169867-5466-1-git-send-email-peter.maydell@linaro.org> References: <1351169867-5466-1-git-send-email-peter.maydell@linaro.org> X-Gm-Message-State: ALoCoQkmmg3ELT92xl/WKFj2Ym9hphXE0LvvHbOTSOQwu5bkyzuyiyYhi+FoHU+B0S164CmOa4du 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: