From patchwork Tue Jan 5 06:27:31 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Isaku Yamahata X-Patchwork-Id: 42176 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 692E9B6EE9 for ; Wed, 6 Jan 2010 07:45:52 +1100 (EST) Received: from localhost ([127.0.0.1]:45095 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NSGHk-00011Y-SV for incoming@patchwork.ozlabs.org; Tue, 05 Jan 2010 15:45:48 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NSFAs-0004PE-CR for qemu-devel@nongnu.org; Tue, 05 Jan 2010 14:34:38 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NSFAn-0004Lc-GV for qemu-devel@nongnu.org; Tue, 05 Jan 2010 14:34:37 -0500 Received: from [199.232.76.173] (port=49442 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NSFAn-0004LO-1T for qemu-devel@nongnu.org; Tue, 05 Jan 2010 14:34:33 -0500 Received: from mx20.gnu.org ([199.232.41.8]:35775) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1NSFAm-0005qE-P1 for qemu-devel@nongnu.org; Tue, 05 Jan 2010 14:34:32 -0500 Received: from mail.valinux.co.jp ([210.128.90.3]) by mx20.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NS3t9-0000HP-Gm for qemu-devel@nongnu.org; Tue, 05 Jan 2010 02:31:35 -0500 Received: from ps.local.valinux.co.jp (vagw.valinux.co.jp [210.128.90.14]) by mail.valinux.co.jp (Postfix) with SMTP id 457D218287; Tue, 5 Jan 2010 15:27:43 +0900 (JST) Received: (nullmailer pid 22660 invoked by uid 1000); Tue, 05 Jan 2010 06:27:50 -0000 From: Isaku Yamahata To: qemu-devel@nongnu.org, kraxel@redhat.com Date: Tue, 5 Jan 2010 15:27:31 +0900 Message-Id: <1262672870-22607-9-git-send-email-yamahata@valinux.co.jp> X-Mailer: git-send-email 1.6.5.4 In-Reply-To: <1262672870-22607-1-git-send-email-yamahata@valinux.co.jp> References: <1262672870-22607-1-git-send-email-yamahata@valinux.co.jp> X-Virus-Scanned: clamav-milter 0.95.2 at va-mail.local.valinux.co.jp X-Virus-Status: Clean X-detected-operating-system: by mx20.gnu.org: GNU/Linux 2.6 (newer, 3) X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6, seldom 2.4 (older, 4) Cc: yamahata@valinux.co.jp Subject: [Qemu-devel] [PATCH V11 08/27] pc: make an unnecessary global variable, pit, local. X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org remove unnecessary global static variables, pit. Make it local. Signed-off-by: Isaku Yamahata --- hw/pc.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/hw/pc.c b/hw/pc.c index cdd9de6..0dee9d7 100644 --- a/hw/pc.c +++ b/hw/pc.c @@ -66,7 +66,6 @@ static fdctrl_t *floppy_controller; static RTCState *rtc_state; -static PITState *pit; typedef struct isa_irq_state { qemu_irq *i8259; @@ -1017,6 +1016,7 @@ static void pc_init1(ram_addr_t ram_size, DriveInfo *hd[MAX_IDE_BUS * MAX_IDE_DEVS]; DriveInfo *fd[MAX_FD]; void *fw_cfg; + PITState *pit; if (ram_size >= 0xe0000000 ) { above_4g_mem_size = ram_size - 0xe0000000;