From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:49443) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1R83L3-0002v8-Ui for qemu-devel@nongnu.org; Mon, 26 Sep 2011 01:02:46 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1R83L2-0004M2-Ns for qemu-devel@nongnu.org; Mon, 26 Sep 2011 01:02:45 -0400 From: Antony Pavlov Date: Mon, 26 Sep 2011 09:02:38 +0400 Message-Id: <1317013358-19839-2-git-send-email-antonynpavlov@gmail.com> In-Reply-To: <1317013358-19839-1-git-send-email-antonynpavlov@gmail.com> References: <1317013358-19839-1-git-send-email-antonynpavlov@gmail.com> Subject: [Qemu-devel] [PATCH 2/2] 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: qemu-trivial@nongnu.org, Antony Pavlov , Aurelien Jarno 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