aboutsummaryrefslogtreecommitdiff
path: root/stubs/ramfb.c
diff options
context:
space:
mode:
Diffstat (limited to 'stubs/ramfb.c')
-rw-r--r--stubs/ramfb.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/stubs/ramfb.c b/stubs/ramfb.c
new file mode 100644
index 0000000000..48143f3354
--- /dev/null
+++ b/stubs/ramfb.c
@@ -0,0 +1,13 @@
+#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;
+}