From patchwork Wed Oct 5 08:47:55 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefan Hajnoczi X-Patchwork-Id: 117776 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [140.186.70.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 04915B6F8E for ; Wed, 5 Oct 2011 19:49:46 +1100 (EST) Received: from localhost ([::1]:58360 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RBNAY-0005oz-G9 for incoming@patchwork.ozlabs.org; Wed, 05 Oct 2011 04:49:38 -0400 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 Received: from localhost (sig-9-146-224-147.de.ibm.com [9.146.224.147]) by d06av01.portsmouth.uk.ibm.com (8.14.4/8.13.1/NCO v10.0 AVin) with ESMTP id p958m6jV025136; Wed, 5 Oct 2011 02:48:07 -0600 From: Stefan Hajnoczi To: Date: Wed, 5 Oct 2011 09:47:55 +0100 Message-Id: <1317804479-5876-4-git-send-email-stefanha@linux.vnet.ibm.com> X-Mailer: git-send-email 1.7.6.3 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> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6, seldom 2.4 (older, 4) X-Received-From: 194.196.100.163 Cc: Anthony Liguori , Antony Pavlov , Stefan Hajnoczi Subject: [Qemu-devel] [PATCH 3/7] gt64xxx.c: remove reference to non-existing ISD_handle field X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org 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);