From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1KKZas-0005m7-8s for qemu-devel@nongnu.org; Sun, 20 Jul 2008 10:08:58 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1KKZar-0005lB-9a for qemu-devel@nongnu.org; Sun, 20 Jul 2008 10:08:57 -0400 Received: from [199.232.76.173] (port=34115 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KKZar-0005kw-0n for qemu-devel@nongnu.org; Sun, 20 Jul 2008 10:08:57 -0400 Received: from moutng.kundenserver.de ([212.227.126.171]:53241) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1KKZaq-00048r-H5 for qemu-devel@nongnu.org; Sun, 20 Jul 2008 10:08:56 -0400 Received: from localhost ([127.0.0.1] ident=stefan) by flocke.weilnetz.de with esmtp (Exim 4.69) (envelope-from ) id 1KKZad-0001T7-TA for qemu-devel@nongnu.org; Sun, 20 Jul 2008 16:08:43 +0200 Message-ID: <488346EB.1000103@weilnetz.de> Date: Sun, 20 Jul 2008 16:08:43 +0200 From: Stefan Weil MIME-Version: 1.0 Subject: [Qemu-devel] [PATCH] Fix log message Content-Type: multipart/mixed; boundary="------------000002090406040403060807" Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: QEMU Developers This is a multi-part message in MIME format. --------------000002090406040403060807 Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit Hello, this patch fixes a two debug messages (wrong function names). Please apply it to Qemu SVN trunk. Regards Stefan --------------000002090406040403060807 Content-Type: text/x-diff; name="pcnet.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="pcnet.patch" 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 --------------000002090406040403060807--