All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] hw/m48t59.c make debug printing consistent
@ 2007-12-27 23:42 Robert Reif
  0 siblings, 0 replies; only message in thread
From: Robert Reif @ 2007-12-27 23:42 UTC (permalink / raw)
  To: qemu-devel

[-- Attachment #1: Type: text/plain, Size: 115 bytes --]

This patch adds __func__ to 3 of the 4 debug printfs to make it 
consistent with the the one that already uses it.

[-- Attachment #2: m48t59.c.diff.txt --]
[-- Type: text/plain, Size: 949 bytes --]

diff -p -u -r1.17 m48t59.c
--- hw/m48t59.c	17 Nov 2007 17:14:43 -0000	1.17
+++ hw/m48t59.c	27 Dec 2007 23:34:11 -0000
@@ -451,7 +451,7 @@ uint32_t m48t59_read (void *opaque, uint
         break;
     }
     if (addr > 0x1FF9 && addr < 0x2000)
-	NVRAM_PRINTF("0x%08x <= 0x%08x\n", addr, retval);
+	NVRAM_PRINTF("%s: 0x%08x <= 0x%08x\n", __func__, addr, retval);
 
     return retval;
 }
@@ -476,7 +476,7 @@ static void NVRAM_writeb (void *opaque, 
     m48t59_t *NVRAM = opaque;
 
     addr -= NVRAM->io_base;
-    NVRAM_PRINTF("0x%08x => 0x%08x\n", addr, val);
+    NVRAM_PRINTF("%s: 0x%08x => 0x%08x\n", __func__, addr, val);
     switch (addr) {
     case 0:
         NVRAM->addr &= ~0x00FF;
@@ -509,7 +509,7 @@ static uint32_t NVRAM_readb (void *opaqu
         retval = -1;
         break;
     }
-    NVRAM_PRINTF("0x%08x <= 0x%08x\n", addr, retval);
+    NVRAM_PRINTF("%s: 0x%08x <= 0x%08x\n", __func__, addr, retval);
 
     return retval;
 }

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2007-12-27 23:42 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-12-27 23:42 [Qemu-devel] [PATCH] hw/m48t59.c make debug printing consistent Robert Reif

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.