diff options
author | Xiao Guangrong <guangrong.xiao@linux.intel.com> | 2015-12-10 00:40:56 +0100 |
---|---|---|
committer | Timothy Pearson <tpearson@raptorengineering.com> | 2019-11-29 19:28:21 -0600 |
commit | 3ae7e219388510a135315b48f0a2ece7f8929e95 (patch) | |
tree | 456e800be464eaec8161a7cb4693841daedb6405 /include/hw/acpi | |
parent | bc2b083939acfe5dbc0f4cf64281e4db74e72907 (diff) | |
download | hqemu-3ae7e219388510a135315b48f0a2ece7f8929e95.zip hqemu-3ae7e219388510a135315b48f0a2ece7f8929e95.tar.gz |
acpi: add aml_derefof
Implement DeRefOf term which is used by NVDIMM _DSM method in later patch
Reviewed-by: Igor Mammedov <imammedo@redhat.com>
Signed-off-by: Xiao Guangrong <guangrong.xiao@linux.intel.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.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 9fa61a3..89fb15e 100644 --- a/include/hw/acpi/aml-build.h +++ b/include/hw/acpi/aml-build.h @@ -307,6 +307,7 @@ Aml *aml_create_dword_field(Aml *srcbuf, Aml *index, const char *name); Aml *aml_varpackage(uint32_t num_elements); Aml *aml_touuid(const char *uuid); Aml *aml_unicode(const char *str); +Aml *aml_derefof(Aml *arg); void build_header(GArray *linker, GArray *table_data, |