qemu-devel
[Top][All Lists]
Advanced

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

[Qemu-devel] [PATCH] Fix log message


From: Stefan Weil
Subject: [Qemu-devel] [PATCH] Fix log message
Date: Sun, 20 Jul 2008 16:08:43 +0200
User-agent: Mozilla-Thunderbird 2.0.0.14 (X11/20080509)

Hello,

this patch fixes a two debug messages (wrong function names).
Please apply it to Qemu SVN trunk.

Regards
Stefan

Index: hw/pcnet.c
===================================================================
--- hw/pcnet.c  (Revision 4908)
+++ hw/pcnet.c  (Arbeitskopie)
@@ -1939,7 +1939,7 @@
     PCNetState *d = (PCNetState *)pci_dev;
 
 #ifdef PCNET_DEBUG_IO
-    printf("pcnet_ioport_map addr=0x%08x 0x%08x\n", addr, size);
+    printf("pcnet_mmio_map addr=0x%08x 0x%08x\n", addr, size);
 #endif
 
     cpu_register_physical_memory(addr, PCNET_PNPMMIO_SIZE, d->mmio_index);
@@ -2034,7 +2034,7 @@
 
     val = pcnet_ioport_readw(opaque, addr & 7);
 #ifdef PCNET_DEBUG_IO
-    printf("pcnet_mmio_readw addr=" TARGET_FMT_plx " val = 0x%04x\n", addr,
+    printf("lance_mem_readw addr=" TARGET_FMT_plx " val = 0x%04x\n", addr,
            val & 0xffff);
 #endif
 

reply via email to

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