From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:48692) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RBNAS-0005og-DJ for qemu-devel@nongnu.org; Wed, 05 Oct 2011 04:49:33 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RBNAR-0003QM-A1 for qemu-devel@nongnu.org; Wed, 05 Oct 2011 04:49:32 -0400 Received: from mtagate3.uk.ibm.com ([194.196.100.163]:53808) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RBNAR-0003QH-1r for qemu-devel@nongnu.org; Wed, 05 Oct 2011 04:49:31 -0400 Received: from d06nrmr1507.portsmouth.uk.ibm.com (d06nrmr1507.portsmouth.uk.ibm.com [9.149.38.233]) by mtagate3.uk.ibm.com (8.13.1/8.13.1) with ESMTP id p958nU8L025006 for ; Wed, 5 Oct 2011 08:49:30 GMT Received: from d06av01.portsmouth.uk.ibm.com (d06av01.portsmouth.uk.ibm.com [9.149.37.212]) by d06nrmr1507.portsmouth.uk.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id p958nTBR2261032 for ; Wed, 5 Oct 2011 09:49:29 +0100 Received: from d06av01.portsmouth.uk.ibm.com (loopback [127.0.0.1]) by d06av01.portsmouth.uk.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id p958m7Kf025172 for ; Wed, 5 Oct 2011 02:48:07 -0600 From: Stefan Hajnoczi Date: Wed, 5 Oct 2011 09:47:55 +0100 Message-Id: <1317804479-5876-4-git-send-email-stefanha@linux.vnet.ibm.com> In-Reply-To: <1317804479-5876-1-git-send-email-stefanha@linux.vnet.ibm.com> References: <1317804479-5876-1-git-send-email-stefanha@linux.vnet.ibm.com> Subject: [Qemu-devel] [PATCH 3/7] gt64xxx.c: remove reference to non-existing ISD_handle field List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Anthony Liguori , Antony Pavlov , Stefan Hajnoczi From: Antony Pavlov The commit fc2bf44972349b078d8310466c3866615500e67f removed ISD_handle field from struct GT64120State, so remove the field from DPRINTF too. Signed-off-by: Antony Pavlov Signed-off-by: Stefan Hajnoczi --- hw/gt64xxx.c | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/hw/gt64xxx.c b/hw/gt64xxx.c index 73454ff..432683a 100644 --- a/hw/gt64xxx.c +++ b/hw/gt64xxx.c @@ -275,8 +275,9 @@ static void gt64120_isd_mapping(GT64120State *s) check_reserved_space(&start, &length); length = 0x1000; /* Map new address */ - DPRINTF("ISD: "TARGET_FMT_plx"@"TARGET_FMT_plx" -> "TARGET_FMT_plx"@"TARGET_FMT_plx", %x\n", s->ISD_length, s->ISD_start, - length, start, s->ISD_handle); + DPRINTF("ISD: "TARGET_FMT_plx"@"TARGET_FMT_plx + " -> "TARGET_FMT_plx"@"TARGET_FMT_plx"\n", + s->ISD_length, s->ISD_start, length, start); s->ISD_start = start; s->ISD_length = length; memory_region_add_subregion(get_system_memory(), s->ISD_start, &s->ISD_mem); -- 1.7.6.3