diff mbox

[v3,11/16] rc4030: Convert debug printfs to QEMU_DPRINTF

Message ID 1400367823-32610-12-git-send-email-marc.mari.barcelo@gmail.com
State New
Headers show

Commit Message

Marc MarĂ­ May 17, 2014, 11:03 p.m. UTC
Modify debug macros to have the same format through the codebase and use regular
ifs instead of ifdef.

Change the output of debug messages from stdout to stderr.

Remove header in debug printfs, as QEMU_DPRINTF already adds it.

Signed-off-by: Marc MarĂ­ <marc.mari.barcelo@gmail.com>
---
 hw/dma/rc4030.c |   29 +++++++++++++++--------------
 1 file changed, 15 insertions(+), 14 deletions(-)
diff mbox

Patch

diff --git a/hw/dma/rc4030.c b/hw/dma/rc4030.c
index af26632..54885cc 100644
--- a/hw/dma/rc4030.c
+++ b/hw/dma/rc4030.c
@@ -32,17 +32,18 @@ 
 //#define DEBUG_RC4030
 //#define DEBUG_RC4030_DMA
 
-#ifdef DEBUG_RC4030
-#define DPRINTF(fmt, ...) \
-do { printf("rc4030: " fmt , ## __VA_ARGS__); } while (0)
 static const char* irq_names[] = { "parallel", "floppy", "sound", "video",
             "network", "scsi", "keyboard", "mouse", "serial0", "serial1" };
+#ifdef DEBUG_RC4030
+#define DEBUG_RC4030_ENABLED 1
 #else
-#define DPRINTF(fmt, ...)
+#define DEBUG_RC4030_ENABLED 0
 #endif
 
+#define DPRINTF(fmt, ...) \
+    QEMU_DPRINTF(DEBUG_RC4030_ENABLED, "rc4030", fmt, ## __VA_ARGS__)
 #define RC4030_ERROR(fmt, ...) \
-do { fprintf(stderr, "rc4030 ERROR: %s: " fmt, __func__ , ## __VA_ARGS__); } while (0)
+    QEMU_DPRINTF(1, "rc4030 ERROR", fmt, ## __VA_ARGS__)
 
 /********************************************************/
 /* rc4030 emulation                                     */
@@ -442,13 +443,13 @@  static void update_jazz_irq(rc4030State *s)
         DPRINTF("pending irqs:");
         for (irq = 0; irq < ARRAY_SIZE(irq_names); irq++) {
             if (s->isr_jazz & (1 << irq)) {
-                printf(" %s", irq_names[irq]);
+                fprintf(stderr, " %s", irq_names[irq]);
                 if (!(s->imr_jazz & (1 << irq))) {
-                    printf("(ignored)");
+                    fprintf(stderr, "(ignored)");
                 }
             }
         }
-        printf("\n");
+        fprintf(stderr, "\n");
     }
 #endif
 
@@ -741,7 +742,7 @@  static void rc4030_do_dma(void *opaque, int n, uint8_t *buf, int len, int is_wri
 #ifdef DEBUG_RC4030_DMA
     {
         int i, j;
-        printf("rc4030 dma: Copying %d bytes %s host %p\n",
+        DPRINTF("Copying %d bytes %s host %p\n",
             len, is_write ? "from" : "to", buf);
         for (i = 0; i < len; i += 16) {
             int n = 16;
@@ -749,13 +750,13 @@  static void rc4030_do_dma(void *opaque, int n, uint8_t *buf, int len, int is_wri
                 n = len - i;
             }
             for (j = 0; j < n; j++)
-                printf("%02x ", buf[i + j]);
+                fprintf(stderr, "%02x ", buf[i + j]);
             while (j++ < 16)
-                printf("   ");
-            printf("| ");
+                fprintf(stderr, "   ");
+            fprintf(stderr , "| ");
             for (j = 0; j < n; j++)
-                printf("%c", isprint(buf[i + j]) ? buf[i + j] : '.');
-            printf("\n");
+                fprintf(stderr, "%c", isprint(buf[i + j]) ? buf[i + j] : '.');
+            fprintf(stderr, "\n");
         }
     }
 #endif