mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 16:53:55 -06:00
edid: flip the default to enabled
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Message-id: 20190607083444.32175-1-kraxel@redhat.com
This commit is contained in:
parent
9b330e482f
commit
0a71966253
4 changed files with 11 additions and 5 deletions
|
@ -340,7 +340,7 @@ static Property vga_pci_properties[] = {
|
|||
DEFINE_PROP_BIT("qemu-extended-regs",
|
||||
PCIVGAState, flags, PCI_VGA_FLAG_ENABLE_QEXT, true),
|
||||
DEFINE_PROP_BIT("edid",
|
||||
PCIVGAState, flags, PCI_VGA_FLAG_ENABLE_EDID, false),
|
||||
PCIVGAState, flags, PCI_VGA_FLAG_ENABLE_EDID, true),
|
||||
DEFINE_EDID_PROPERTIES(PCIVGAState, edid_info),
|
||||
DEFINE_PROP_BOOL("global-vmstate", PCIVGAState, vga.global_vmstate, false),
|
||||
DEFINE_PROP_END_OF_LIST(),
|
||||
|
@ -351,7 +351,7 @@ static Property secondary_pci_properties[] = {
|
|||
DEFINE_PROP_BIT("qemu-extended-regs",
|
||||
PCIVGAState, flags, PCI_VGA_FLAG_ENABLE_QEXT, true),
|
||||
DEFINE_PROP_BIT("edid",
|
||||
PCIVGAState, flags, PCI_VGA_FLAG_ENABLE_EDID, false),
|
||||
PCIVGAState, flags, PCI_VGA_FLAG_ENABLE_EDID, true),
|
||||
DEFINE_EDID_PROPERTIES(PCIVGAState, edid_info),
|
||||
DEFINE_PROP_END_OF_LIST(),
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue