2fc979cb9d
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
14 lines
255 B
C
14 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;
|
|
}
|