From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:39582) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TNNyY-0005EP-Rt for qemu-devel@nongnu.org; Sun, 14 Oct 2012 09:11:27 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TNNyX-0002Sa-Rf for qemu-devel@nongnu.org; Sun, 14 Oct 2012 09:11:26 -0400 Received: from 38.0.169.217.in-addr.arpa ([217.169.0.38]:42693 helo=mnementh.archaic.org.uk) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TNNyX-0002Rm-LO for qemu-devel@nongnu.org; Sun, 14 Oct 2012 09:11:25 -0400 From: Peter Maydell Date: Sun, 14 Oct 2012 14:11:12 +0100 Message-Id: <1350220276-16349-4-git-send-email-peter.maydell@linaro.org> In-Reply-To: <1350220276-16349-1-git-send-email-peter.maydell@linaro.org> References: <1350220276-16349-1-git-send-email-peter.maydell@linaro.org> Subject: [Qemu-devel] [PATCH 3/7] hw/pl041: Use LOG_UNIMP List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Blue Swirl , patches@linaro.org Use the new LOG_UNIMP tracing to report unimplemented features. Signed-off-by: Peter Maydell --- hw/pl041.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/hw/pl041.c b/hw/pl041.c index b6723be..260c560 100644 --- a/hw/pl041.c +++ b/hw/pl041.c @@ -21,6 +21,7 @@ */ #include "sysbus.h" +#include "qemu-log.h" #include "pl041.h" #include "lm4549.h" @@ -536,8 +537,9 @@ static int pl041_init(SysBusDevice *dev) default: /* NC FIFO depth of 16 is not allowed because its id bits in AACIPERIPHID3 overlap with the id for the default NC FIFO depth */ - fprintf(stderr, "pl041: unsupported non-compact fifo depth [%i]\n", - s->fifo_depth); + qemu_log_mask(LOG_UNIMP, + "pl041: unsupported non-compact fifo depth [%i]\n", + s->fifo_depth); return -1; } -- 1.7.11.4