diff options
| author | Igor Mammedov | 2015-02-18 20:14:24 +0100 |
|---|---|---|
| committer | Michael S. Tsirkin | 2015-02-26 13:04:12 +0100 |
| commit | c263b3f754325ae76946a5ea0e1df9368fe289bd (patch) | |
| tree | 98345b075b2a55cef08fdb27eec266384863fe95 /include | |
| parent | acpi: add aml_arg() term (diff) | |
| download | qemu-c263b3f754325ae76946a5ea0e1df9368fe289bd.tar.gz qemu-c263b3f754325ae76946a5ea0e1df9368fe289bd.tar.xz qemu-c263b3f754325ae76946a5ea0e1df9368fe289bd.zip | |
acpi: add aml_store() 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')
| -rw-r--r-- | include/hw/acpi/aml-build.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/hw/acpi/aml-build.h b/include/hw/acpi/aml-build.h index 63e9754ad6..6ad76ddc62 100644 --- a/include/hw/acpi/aml-build.h +++ b/include/hw/acpi/aml-build.h @@ -65,6 +65,7 @@ Aml *aml_name_decl(const char *name, Aml *val); Aml *aml_return(Aml *val); Aml *aml_int(const uint64_t val); Aml *aml_arg(int pos); +Aml *aml_store(Aml *val, Aml *target); /* Block AML object primitives */ Aml *aml_scope(const char *name_format, ...) GCC_FMT_ATTR(1, 2); |
