From cbd3f7281f7231e770c36ef6bd56258ebf045e26 Mon Sep 17 00:00:00 2001 From: "jinhyung.jo" Date: Wed, 10 Jul 2013 17:45:47 +0900 Subject: [PATCH] Fix the error that displaying only white screen Change-Id: Ifc019fa4739705417a5fc92ef2b2f3080326e60a Signed-off-by: Jinhyung Jo --- hw/pci/pci.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/pci/pci.c b/hw/pci/pci.c index cfb62c2907..2d4dc5dc1f 100644 --- a/hw/pci/pci.c +++ b/hw/pci/pci.c @@ -1626,7 +1626,7 @@ PCIDevice *pci_vga_init(PCIBus *bus) return pci_create_simple(bus, -1, "VGA"); case VGA_VMWARE: return pci_create_simple(bus, -1, "vmware-svga"); -#ifdef CONFIG_VGA +#ifdef CONFIG_MARU case VGA_MARU: return pci_create_simple(bus, -1, "MARU_VGA"); #endif -- 2.34.1