diff options
author | Igor Mammedov <imammedo@redhat.com> | 2015-02-18 19:14:42 +0000 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2015-02-26 13:04:16 +0100 |
commit | a7891dacadebb9c02e027c456a1d17ea0bdf6df8 (patch) | |
tree | 25b1f4e8f8936e4ff68dc299d50d94219141bb50 /include | |
parent | 3dd156435369153c1c1d890b9ef525f1d033a971 (diff) | |
download | qemu-a7891dacadebb9c02e027c456a1d17ea0bdf6df8.zip qemu-a7891dacadebb9c02e027c456a1d17ea0bdf6df8.tar.gz qemu-a7891dacadebb9c02e027c456a1d17ea0bdf6df8.tar.bz2 |
acpi: add aml_eisaid() 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 58bbbfe..bf94155 100644 --- a/include/hw/acpi/aml-build.h +++ b/include/hw/acpi/aml-build.h @@ -96,6 +96,7 @@ Aml *aml_string(const char *name_format, ...) GCC_FMT_ATTR(1, 2); Aml *aml_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); /* Block AML object primitives */ Aml *aml_scope(const char *name_format, ...) GCC_FMT_ATTR(1, 2); |