From patchwork Fri Dec 7 11:39:08 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefan Hajnoczi X-Patchwork-Id: 204465 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id B77BC2C00D6 for ; Fri, 7 Dec 2012 22:54:44 +1100 (EST) Received: from localhost ([::1]:57927 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TgwVu-0004sp-R3 for incoming@patchwork.ozlabs.org; Fri, 07 Dec 2012 06:54:42 -0500 Received: from eggs.gnu.org ([208.118.235.92]:39923) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TgwVe-0004e4-R2 for qemu-devel@nongnu.org; Fri, 07 Dec 2012 06:54:29 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TgwVY-0005hu-0v for qemu-devel@nongnu.org; Fri, 07 Dec 2012 06:54:26 -0500 Received: from mx1.redhat.com ([209.132.183.28]:41291) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TgwHE-0002LC-3V for qemu-devel@nongnu.org; Fri, 07 Dec 2012 06:39:32 -0500 Received: from int-mx02.intmail.prod.int.phx2.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id qB7BdV4Z024902 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Fri, 7 Dec 2012 06:39:31 -0500 Received: from localhost (wlan-68-98.muc.redhat.com [10.32.68.98]) by int-mx02.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id qB7BdUf2016051; Fri, 7 Dec 2012 06:39:31 -0500 From: Stefan Hajnoczi To: Date: Fri, 7 Dec 2012 12:39:08 +0100 Message-Id: <1354880352-9597-10-git-send-email-stefanha@redhat.com> In-Reply-To: <1354880352-9597-1-git-send-email-stefanha@redhat.com> References: <1354880352-9597-1-git-send-email-stefanha@redhat.com> X-Scanned-By: MIMEDefang 2.67 on 10.5.11.12 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 209.132.183.28 Cc: Anthony Liguori , Peter Crosthwaite , Stefan Hajnoczi Subject: [Qemu-devel] [PATCH 09/13] arm: a9mpcore: remove un-used ptimer_iomem 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: Peter Crosthwaite I'm guessing this is a hangover from a previous coreification of the mptimer sub-module. This field is completely unused - removed. Signed-off-by: Peter Crosthwaite Reviewed-by: Peter Maydell Signed-off-by: Stefan Hajnoczi --- hw/a9mpcore.c | 1 - 1 file changed, 1 deletion(-) diff --git a/hw/a9mpcore.c b/hw/a9mpcore.c index 824ff0a..f802de0 100644 --- a/hw/a9mpcore.c +++ b/hw/a9mpcore.c @@ -19,7 +19,6 @@ typedef struct a9mp_priv_state { uint32_t old_timer_status[8]; uint32_t num_cpu; MemoryRegion scu_iomem; - MemoryRegion ptimer_iomem; MemoryRegion container; DeviceState *mptimer; DeviceState *gic;