xref: /openbmc/qemu/hw/display/ramfb-stubs.c (revision 0a9a27305da030a83e65714f6ba202dbcaf448a3)
1 #include "qemu/osdep.h"
2 #include "qapi/error.h"
3 #include "hw/display/ramfb.h"
4 
5 const VMStateDescription ramfb_vmstate = {};
6 
7 void ramfb_display_update(QemuConsole *con, RAMFBState *s)
8 {
9 }
10 
11 RAMFBState *ramfb_setup(bool romfile, Error **errp)
12 {
13     error_setg(errp, "ramfb support not available");
14     return NULL;
15 }
16