2018-10-15 18:52:09 +02:00
|
|
|
#include "qemu/osdep.h"
|
|
|
|
#include "qapi/error.h"
|
|
|
|
#include "hw/display/ramfb.h"
|
|
|
|
|
|
|
|
void ramfb_display_update(QemuConsole *con, RAMFBState *s)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2019-05-13 13:57:31 +02:00
|
|
|
RAMFBState *ramfb_setup(DeviceState* dev, Error **errp)
|
2018-10-15 18:52:09 +02:00
|
|
|
{
|
|
|
|
error_setg(errp, "ramfb support not available");
|
|
|
|
return NULL;
|
|
|
|
}
|