aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorIgor Mammedov <imammedo@redhat.com>2015-12-10 00:40:58 +0100
committerMichael S. Tsirkin <mst@redhat.com>2015-12-22 18:39:20 +0200
commit2d3f667dc63f3bf96c5a8b47785f56c86f6dfd90 (patch)
tree0b9bf517429c19d6842d62ccdaf4dfc067ae8db6 /include
parent52483d147bfe49e98aa76230f5f90f9f246f44ed (diff)
downloadqemu-2d3f667dc63f3bf96c5a8b47785f56c86f6dfd90.zip
qemu-2d3f667dc63f3bf96c5a8b47785f56c86f6dfd90.tar.gz
qemu-2d3f667dc63f3bf96c5a8b47785f56c86f6dfd90.tar.bz2
acpi: add aml_lgreater_equal()
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> Reviewed-by: Shannon Zhao <shannon.zhao@linaro.org>
Diffstat (limited to 'include')
-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 b8a0ad2..fba8f25 100644
--- a/include/hw/acpi/aml-build.h
+++ b/include/hw/acpi/aml-build.h
@@ -262,6 +262,7 @@ Aml *aml_local(int num);
Aml *aml_string(const char *name_format, ...) GCC_FMT_ATTR(1, 2);
Aml *aml_lnot(Aml *arg);
Aml *aml_equal(Aml *arg1, Aml *arg2);
+Aml *aml_lgreater_equal(Aml *arg1, Aml *arg2);
Aml *aml_processor(uint8_t proc_id, uint32_t pblk_addr, uint8_t pblk_len,
const char *name_format, ...) GCC_FMT_ATTR(4, 5);
Aml *aml_eisaid(const char *str);