aboutsummaryrefslogtreecommitdiff
path: root/include/hw/acpi
diff options
context:
space:
mode:
authorIgor Mammedov <imammedo@redhat.com>2015-02-18 19:14:28 +0000
committerMichael S. Tsirkin <mst@redhat.com>2015-02-26 13:04:13 +0100
commit3bfa74a7e8c0787877e0f23a873413ad8817c66c (patch)
tree888e7d180f33b6b2b9e8142ee00af286ddfeb9af /include/hw/acpi
parent3f3992b7c4ed9850e7f5502a1294cd017a891b38 (diff)
downloadqemu-3bfa74a7e8c0787877e0f23a873413ad8817c66c.zip
qemu-3bfa74a7e8c0787877e0f23a873413ad8817c66c.tar.gz
qemu-3bfa74a7e8c0787877e0f23a873413ad8817c66c.tar.bz2
acpi: add aml_package() term
Signed-off-by: Igor Mammedov <imammedo@redhat.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'include/hw/acpi')
-rw-r--r--include/hw/acpi/aml-build.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/hw/acpi/aml-build.h b/include/hw/acpi/aml-build.h
index 5f00b07..92097b5 100644
--- a/include/hw/acpi/aml-build.h
+++ b/include/hw/acpi/aml-build.h
@@ -78,6 +78,7 @@ Aml *aml_scope(const char *name_format, ...) GCC_FMT_ATTR(1, 2);
Aml *aml_device(const char *name_format, ...) GCC_FMT_ATTR(1, 2);
Aml *aml_method(const char *name, int arg_count);
Aml *aml_if(Aml *predicate);
+Aml *aml_package(uint8_t num_elements);
/* other helpers */
GArray *build_alloc_array(void);