From 7f623d0834238ce6566afcbeeb325f3d943c2741 Mon Sep 17 00:00:00 2001 From: Gerd Hoffmann Date: Mon, 15 Oct 2018 10:52:09 -0600 Subject: stubs: add ramfb Needed to make sure code using ramfb (vfio) compiles properly even on platforms without fw_cfg (and therefore no ramfb) support. Signed-off-by: Gerd Hoffmann Signed-off-by: Alex Williamson --- stubs/ramfb.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 stubs/ramfb.c (limited to 'stubs/ramfb.c') 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; +} -- cgit v1.2.3