From patchwork Thu Dec 24 08:09:01 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [V10,08/27] pc: make an unnecessary global variable, pit, local. Date: Wed, 23 Dec 2009 22:09:01 -0000 From: Isaku Yamahata X-Patchwork-Id: 41754 Message-Id: <1261642160-22754-9-git-send-email-yamahata@valinux.co.jp> To: qemu-devel@nongnu.org, kraxel@redhat.com Cc: yamahata@valinux.co.jp 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 00f4efa..93d0ce4 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; @@ -1008,6 +1007,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;