From: Isaku Yamahata Date: Wed, 22 Dec 2010 06:13:43 +0000 (+0900) Subject: pc/piix: fix mismerge of b1aeb92666d2fde413c34578b3b42bbfe5f2a506 X-Git-Tag: TizenStudio_2.0_p2.3.2~208^2~6537^2~32 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=362dd48c16728a656c1ef75f8160838127fd76d5;p=sdk%2Femulator%2Fqemu.git pc/piix: fix mismerge of b1aeb92666d2fde413c34578b3b42bbfe5f2a506 The change set of b1aeb92666d2fde413c34578b3b42bbfe5f2a506 in pci branch was mismerged. The compatibility should be kept for 0.13, not for 0.14. Signed-off-by: Isaku Yamahata Signed-off-by: Michael S. Tsirkin --- diff --git a/hw/pc_piix.c b/hw/pc_piix.c index a2fb554..f82508d 100644 --- a/hw/pc_piix.c +++ b/hw/pc_piix.c @@ -217,14 +217,6 @@ static QEMUMachine pc_machine = { .desc = "Standard PC", .init = pc_init_pci, .max_cpus = 255, - .compat_props = (GlobalProperty[]) { - { - .driver = "PCI", - .property = "command_serr_enable", - .value = "off", - }, - { /* end of list */ } - }, .is_default = 1, }; @@ -246,6 +238,10 @@ static QEMUMachine pc_machine_v0_13 = { .driver = "vmware-svga", .property = "rombar", .value = stringify(0), + },{ + .driver = "PCI", + .property = "command_serr_enable", + .value = "off", }, { /* end of list */ } },