From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=43149 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PdGlj-0001VJ-FB for qemu-devel@nongnu.org; Thu, 13 Jan 2011 01:34:50 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PdGlh-0000Py-5k for qemu-devel@nongnu.org; Thu, 13 Jan 2011 01:34:47 -0500 Received: from sj-iport-5.cisco.com ([171.68.10.87]:43860) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PdGlg-0000PT-V6 for qemu-devel@nongnu.org; Thu, 13 Jan 2011 01:34:45 -0500 From: David Ahern Date: Wed, 12 Jan 2011 23:34:35 -0700 Message-Id: <1294900477-23722-7-git-send-email-daahern@cisco.com> In-Reply-To: <1294900477-23722-1-git-send-email-daahern@cisco.com> References: <1294900477-23722-1-git-send-email-daahern@cisco.com> Subject: [Qemu-devel] [PATCH 6/8] x86_64 config: fix compile for CONFIG_VGA_ISA=n List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: David Ahern Signed-off-by: David Ahern --- hw/pc.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/hw/pc.c b/hw/pc.c index e7514fd..11b570f 100644 --- a/hw/pc.c +++ b/hw/pc.c @@ -1087,8 +1087,10 @@ void pc_vga_init(PCIBus *pci_bus) } else if (std_vga_enabled) { if (pci_bus) { pci_vga_init(pci_bus); +#ifdef CONFIG_VGA_ISA } else { isa_vga_init(); +#endif } } } -- 1.7.3.4