From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from list by lists.gnu.org with archive (Exim 4.71) id 1R7uuE-0005ki-S6 for mharc-qemu-trivial@gnu.org; Sun, 25 Sep 2011 16:02:30 -0400 Received: from eggs.gnu.org ([140.186.70.92]:42202) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1R7uuC-0005at-8n for qemu-trivial@nongnu.org; Sun, 25 Sep 2011 16:02:29 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1R7uuB-0005fv-0H for qemu-trivial@nongnu.org; Sun, 25 Sep 2011 16:02:28 -0400 Received: from mail-fx0-f45.google.com ([209.85.161.45]:59419) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1R7uu9-0005fE-2a; Sun, 25 Sep 2011 16:02:25 -0400 Received: by fxh13 with SMTP id 13so5526444fxh.4 for ; Sun, 25 Sep 2011 13:02:24 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references; bh=n8XRR49uWaJ3FupfwKgeOl1hhLMNaswXcftBNPPFS2s=; b=ZJ5eIxkGTKH+nfI2wKmBJNouhE0eOF3k64IFf0RGF1QHKj993EEwhk+FIoX7hjx3OB flBUegbrcBE70qSrqPpJV56dDHB/zEJrWpARxJ9+WOQ04HjuIOFLoyS8r5QsZvt7+tAf 112+PMsBRACp6VZxUKDJAa/1T3nuRTKJ5+Xtk= Received: by 10.223.48.69 with SMTP id q5mr9244177faf.80.1316980944156; Sun, 25 Sep 2011 13:02:24 -0700 (PDT) Received: from localhost.localdomain (ppp95-165-19-215.pppoe.spdop.ru. [95.165.19.215]) by mx.google.com with ESMTPS id g19sm3900547fai.8.2011.09.25.13.02.22 (version=TLSv1/SSLv3 cipher=OTHER); Sun, 25 Sep 2011 13:02:23 -0700 (PDT) From: Antony Pavlov To: qemu-devel@nongnu.org Date: Mon, 26 Sep 2011 00:02:17 +0400 Message-Id: <1316980937-18588-2-git-send-email-antonynpavlov@gmail.com> X-Mailer: git-send-email 1.7.5.4 In-Reply-To: <1316980937-18588-1-git-send-email-antonynpavlov@gmail.com> References: <1316980937-18588-1-git-send-email-antonynpavlov@gmail.com> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) X-Received-From: 209.85.161.45 Cc: qemu-trivial@nongnu.org, Antony Pavlov , Aurelien Jarno Subject: [Qemu-trivial] [PATCH 2/2] gt64xxx.c: remove reference to non-existing ISD_handle field X-BeenThere: qemu-trivial@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 Sep 2011 20:02:29 -0000 The commit fc2bf44972349b078d8310466c3866615500e67f removed ISD_handle field from struct GT64120State, so remove the field from DPRINTF too. Signed-off-by: Antony Pavlov --- hw/gt64xxx.c | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/hw/gt64xxx.c b/hw/gt64xxx.c index 1defb6d..35dc1cd 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.5.4