summary refs log tree commit diff stats
path: root/hw/acpi/acpi-stub.c
diff options
context:
space:
mode:
Diffstat (limited to 'hw/acpi/acpi-stub.c')
-rw-r--r--hw/acpi/acpi-stub.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/hw/acpi/acpi-stub.c b/hw/acpi/acpi-stub.c
index e268ce9b1a..fd0b62fad9 100644
--- a/hw/acpi/acpi-stub.c
+++ b/hw/acpi/acpi-stub.c
@@ -21,7 +21,15 @@
 #include "qemu/osdep.h"
 #include "hw/acpi/acpi.h"
 
+char unsigned *acpi_tables;
+size_t acpi_tables_len;
+
 void acpi_table_add(const QemuOpts *opts, Error **errp)
 {
     g_assert_not_reached();
 }
+
+bool acpi_builtin(void)
+{
+    return false;
+}