qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH 3/7] hw/pl041: Use LOG_UNIMP


From: Peter Maydell
Subject: [Qemu-devel] [PATCH 3/7] hw/pl041: Use LOG_UNIMP
Date: Sun, 14 Oct 2012 14:11:12 +0100

Use the new LOG_UNIMP tracing to report unimplemented
features.

Signed-off-by: Peter Maydell <address@hidden>
---
 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




reply via email to

[Prev in Thread] Current Thread [Next in Thread]