mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-02 21:32:52 +00:00
2fc979cb9d
This reverts commit f79081b4b7
.
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
13 lines
255 B
C
13 lines
255 B
C
#include "qemu/osdep.h"
|
|
#include "qapi/error.h"
|
|
#include "hw/display/ramfb.h"
|
|
|
|
void ramfb_display_update(QemuConsole *con, RAMFBState *s)
|
|
{
|
|
}
|
|
|
|
RAMFBState *ramfb_setup(Error **errp)
|
|
{
|
|
error_setg(errp, "ramfb support not available");
|
|
return NULL;
|
|
}
|