summary refs log tree commit diff stats
path: root/hw/acpi/aml-build-stub.c
diff options
context:
space:
mode:
authorIgor Mammedov <imammedo@redhat.com>2022-10-17 12:21:36 +0200
committerMichael S. Tsirkin <mst@redhat.com>2022-11-07 14:00:29 -0500
commitcfead31326409dad187024de1bf7b40d7a86737e (patch)
tree435be92bb32f062ec518a476bf27d4c3f884a006 /hw/acpi/aml-build-stub.c
parentbd437c960f2b071f7e8ba9bd34af8e2537cd6627 (diff)
downloadfocaccia-qemu-cfead31326409dad187024de1bf7b40d7a86737e.tar.gz
focaccia-qemu-cfead31326409dad187024de1bf7b40d7a86737e.zip
acpi: pc: vga: use AcpiDevAmlIf interface to build VGA device descriptors
NB:
We do not expect any functional change in any ACPI tables with this
change. It's only a refactoring.

NB2:
Some targets (or1k) do not support acpi and CONFIG_ACPI is off for them.
However, modules are reused between all architectures so CONFIG_ACPI is
on.  For those architectures, dummy stub function definitions help to
resolve symbols.  This change uses more of these and so it adds a couple
of dummy stub definitions so that symbols for those can be resolved.

Signed-off-by: Igor Mammedov <imammedo@redhat.com>
Message-Id: <20221017102146.2254096-2-imammedo@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Reviewed-by: Ani Sinha <ani@anisinha.ca>
CC: Bernhard Beschow <shentey@gmail.com>
Signed-off-by: Ani Sinha <ani@anisinha.ca>
Message-Id: <20221107152744.868434-1-ani@anisinha.ca>
Diffstat (limited to 'hw/acpi/aml-build-stub.c')
-rw-r--r--hw/acpi/aml-build-stub.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/hw/acpi/aml-build-stub.c b/hw/acpi/aml-build-stub.c
index 8d8ad1a314..89a8fec4af 100644
--- a/hw/acpi/aml-build-stub.c
+++ b/hw/acpi/aml-build-stub.c
@@ -26,6 +26,16 @@ void aml_append(Aml *parent_ctx, Aml *child)
 {
 }
 
+Aml *aml_return(Aml *val)
+{
+    return NULL;
+}
+
+Aml *aml_method(const char *name, int arg_count, AmlSerializeFlag sflag)
+{
+    return NULL;
+}
+
 Aml *aml_resource_template(void)
 {
     return NULL;