summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorIgor Mammedov2015-12-10 00:41:02 +0100
committerMichael S. Tsirkin2015-12-22 17:39:21 +0100
commit20ca52088448252c392cde99a06bb9bf020413b4 (patch)
tree7aa0c8d6d6ae5c956c411f977da77b585d9d8af8 /include
parentacpi: aml: add helper for Opcode Arg2 Arg2 [Dst] AML pattern (diff)
downloadqemu-20ca52088448252c392cde99a06bb9bf020413b4.tar.gz
qemu-20ca52088448252c392cde99a06bb9bf020413b4.tar.xz
qemu-20ca52088448252c392cde99a06bb9bf020413b4.zip
acpi: extend aml_add() to accept target argument
it allows to express following ASL expression: Add(arg1, arg2, result) usecases that do not need to store result should pass NULL as 3rd arg that would express Add(arg1, arg2,) construct. 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> Reviewed-by: Marcel Apfelbaum <marcel@redhat.com>
Diffstat (limited to 'include')
-rw-r--r--include/hw/acpi/aml-build.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/hw/acpi/aml-build.h b/include/hw/acpi/aml-build.h
index 4acc4d01a4..0769b35d91 100644
--- a/include/hw/acpi/aml-build.h
+++ b/include/hw/acpi/aml-build.h
@@ -230,7 +230,7 @@ Aml *aml_or(Aml *arg1, Aml *arg2);
Aml *aml_shiftleft(Aml *arg1, Aml *count);
Aml *aml_shiftright(Aml *arg1, Aml *count);
Aml *aml_lless(Aml *arg1, Aml *arg2);
-Aml *aml_add(Aml *arg1, Aml *arg2);
+Aml *aml_add(Aml *arg1, Aml *arg2, Aml *dst);
Aml *aml_increment(Aml *arg);
Aml *aml_index(Aml *arg1, Aml *idx);
Aml *aml_notify(Aml *arg1, Aml *arg2);