diff options
author | Gerd Hoffmann | 2019-06-07 10:34:44 +0200 |
---|---|---|
committer | Gerd Hoffmann | 2019-06-13 09:34:50 +0200 |
commit | 0a71966253c8b07586ebd6bee094a818e1e163b8 (patch) | |
tree | 32b10e1d6b164187a31945b2e5c3d8affb2dbe5b /hw/display/bochs-display.c | |
parent | edid: add xmax + ymax properties (diff) | |
download | qemu-0a71966253c8b07586ebd6bee094a818e1e163b8.tar.gz qemu-0a71966253c8b07586ebd6bee094a818e1e163b8.tar.xz qemu-0a71966253c8b07586ebd6bee094a818e1e163b8.zip |
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
Diffstat (limited to 'hw/display/bochs-display.c')
-rw-r--r-- | hw/display/bochs-display.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/display/bochs-display.c b/hw/display/bochs-display.c index 0a2a3e27c4..582133dd71 100644 --- a/hw/display/bochs-display.c +++ b/hw/display/bochs-display.c @@ -338,7 +338,7 @@ static void bochs_display_exit(PCIDevice *dev) static Property bochs_display_properties[] = { DEFINE_PROP_SIZE("vgamem", BochsDisplayState, vgamem, 16 * MiB), - DEFINE_PROP_BOOL("edid", BochsDisplayState, enable_edid, false), + DEFINE_PROP_BOOL("edid", BochsDisplayState, enable_edid, true), DEFINE_EDID_PROPERTIES(BochsDisplayState, edid_info), DEFINE_PROP_END_OF_LIST(), }; |