]> git.ipfire.org Git - thirdparty/qemu.git/blob - stubs/ramfb.c
Merge remote-tracking branch 'remotes/marcel/tags/rdma-pull-request' into staging
[thirdparty/qemu.git] / stubs / ramfb.c
1 #include "qemu/osdep.h"
2 #include "qapi/error.h"
3 #include "hw/display/ramfb.h"
4
5 void ramfb_display_update(QemuConsole *con, RAMFBState *s)
6 {
7 }
8
9 RAMFBState *ramfb_setup(DeviceState* dev, Error **errp)
10 {
11 error_setg(errp, "ramfb support not available");
12 return NULL;
13 }