diff options
| author | Igor Mammedov | 2015-02-18 20:14:22 +0100 |
|---|---|---|
| committer | Michael S. Tsirkin | 2015-02-26 13:04:11 +0100 |
| commit | b25af5ad5953c9587e59c82cc668e574384f5245 (patch) | |
| tree | cac68bee52b977bb69166c5f2e6733b10ebaa7be /include | |
| parent | acpi: add aml_int() term (diff) | |
| download | qemu-b25af5ad5953c9587e59c82cc668e574384f5245.tar.gz qemu-b25af5ad5953c9587e59c82cc668e574384f5245.tar.xz qemu-b25af5ad5953c9587e59c82cc668e574384f5245.zip | |
acpi: add aml_return() 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 a385132b8e..e7fa9771b1 100644 --- a/include/hw/acpi/aml-build.h +++ b/include/hw/acpi/aml-build.h @@ -62,6 +62,7 @@ void aml_append(Aml *parent_ctx, Aml *child); /* non block AML object primitives */ Aml *aml_name(const char *name_format, ...) GCC_FMT_ATTR(1, 2); Aml *aml_name_decl(const char *name, Aml *val); +Aml *aml_return(Aml *val); Aml *aml_int(const uint64_t val); /* Block AML object primitives */ |
