summary refs log tree commit diff stats
path: root/hw/display/edid-generate.c
diff options
context:
space:
mode:
authorGerd Hoffmann <kraxel@redhat.com>2018-10-05 11:19:34 +0200
committerGerd Hoffmann <kraxel@redhat.com>2018-10-05 11:26:56 +0200
commitedbc4b24bbb179fa9562d4e5313470f10569433c (patch)
treec154101579a972d6810440ab9930407f1d8533e8 /hw/display/edid-generate.c
parent0ab90e617040e5590f7fc403b5d34f76f53f6bdc (diff)
downloadfocaccia-qemu-edbc4b24bbb179fa9562d4e5313470f10569433c.tar.gz
focaccia-qemu-edbc4b24bbb179fa9562d4e5313470f10569433c.zip
edid: fix vendor default
"EMU" actually is "Emulex Corporation", so not a good idea to use that
by default.  Lets use the Red Hat vendor id instead, which is in line
with the pci ids which are allocated from Red Hat vendor ids too.

Vendor list is available from http://www.uefi.org/pnp_id_list

Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Message-id: 20181005091934.12143-1-kraxel@redhat.com
Diffstat (limited to 'hw/display/edid-generate.c')
-rw-r--r--hw/display/edid-generate.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/display/edid-generate.c b/hw/display/edid-generate.c
index c80397ea96..37e60fe42a 100644
--- a/hw/display/edid-generate.c
+++ b/hw/display/edid-generate.c
@@ -301,7 +301,7 @@ void qemu_edid_generate(uint8_t *edid, size_t size,
     /* =============== set defaults  =============== */
 
     if (!info->vendor || strlen(info->vendor) != 3) {
-        info->vendor = "EMU";
+        info->vendor = "RHT";
     }
     if (!info->name) {
         info->name = "QEMU Monitor";