diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2020-04-29 13:52:31 +0200 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2020-05-18 15:42:34 +0200 |
commit | 2fc979cb9d717161c1dfde69fa5fe495c1ab03e9 (patch) | |
tree | f270df164485c257a8cebf240d5a75600cd7012c /stubs | |
parent | 63dc3465d6e2c1c31769b0d099991ee978e6e311 (diff) |
Revert "hw/display/ramfb: initialize fw-config space with xres/ yres"
This reverts commit f79081b4b71b72640bedd40a7cd76f864c8287f1.
Patch has broken byteorder handling: RAMFBCfg fields are in bigendian
byteorder, the reset function doesn't care so native byteorder is used
instead. Given this went unnoticed so far the feature is obviously
unused, so just revert the patch.
Cc: Hou Qiming <hqm03ster@gmail.com>
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Acked-by: Laszlo Ersek <lersek@redhat.com>
Message-id: 20200429115236.28709-2-kraxel@redhat.com
Diffstat (limited to 'stubs')
-rw-r--r-- | stubs/ramfb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stubs/ramfb.c b/stubs/ramfb.c index 0799093a5d..48143f3354 100644 --- a/stubs/ramfb.c +++ b/stubs/ramfb.c @@ -6,7 +6,7 @@ void ramfb_display_update(QemuConsole *con, RAMFBState *s) { } -RAMFBState *ramfb_setup(DeviceState* dev, Error **errp) +RAMFBState *ramfb_setup(Error **errp) { error_setg(errp, "ramfb support not available"); return NULL; |