diff options
| author | Gerd Hoffmann <kraxel@redhat.com> | 2018-10-05 11:19:34 +0200 |
|---|---|---|
| committer | Gerd Hoffmann <kraxel@redhat.com> | 2018-10-05 11:26:56 +0200 |
| commit | edbc4b24bbb179fa9562d4e5313470f10569433c (patch) | |
| tree | c154101579a972d6810440ab9930407f1d8533e8 /include/hw/display/edid.h | |
| parent | 0ab90e617040e5590f7fc403b5d34f76f53f6bdc (diff) | |
| download | focaccia-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 'include/hw/display/edid.h')
| -rw-r--r-- | include/hw/display/edid.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/hw/display/edid.h b/include/hw/display/edid.h index bd51d26916..bacf170889 100644 --- a/include/hw/display/edid.h +++ b/include/hw/display/edid.h @@ -4,7 +4,7 @@ #include "hw/hw.h" typedef struct qemu_edid_info { - const char *vendor; + const char *vendor; /* http://www.uefi.org/pnp_id_list */ const char *name; const char *serial; uint32_t dpi; |