qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH v4 for-2.3 02/25] acpi: add aml_or() term


From: Marcel Apfelbaum
Subject: Re: [Qemu-devel] [PATCH v4 for-2.3 02/25] acpi: add aml_or() term
Date: Mon, 09 Mar 2015 11:22:34 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.4.0

On 03/09/2015 09:58 AM, Shannon Zhao wrote:
On 2015/3/8 19:16, Marcel Apfelbaum wrote:
Add encoding for ACPI DefOr Opcode.

Reviewed-by: Igor Mammedov <address@hidden>
Signed-off-by: Marcel Apfelbaum <address@hidden>
---
  hw/acpi/aml-build.c         | 10 ++++++++++
  include/hw/acpi/aml-build.h |  1 +
  2 files changed, 11 insertions(+)

diff --git a/hw/acpi/aml-build.c b/hw/acpi/aml-build.c
index 0d14561..603c0c4 100644
--- a/hw/acpi/aml-build.c
+++ b/hw/acpi/aml-build.c
@@ -448,6 +448,16 @@ Aml *aml_and(Aml *arg1, Aml *arg2)
      return var;
  }

+/* ACPI 1.0b: 16.2.5.4 Type 2 Opcodes Encoding: DefOr */
+Aml *aml_or(Aml *arg1, Aml *arg2)
+{
+    Aml *var = aml_opcode(0x7D /* OrOp */);
+    aml_append(var, arg1);
+    aml_append(var, arg2);
+    build_append_int(var->buf, 0x00); /* NullNameOp */
Hi,
Hi Shannon, thank you for your review.


I notice that MST has sent a patch which uses build_append_byte instead of 
build_append_int.
Maybe we can fix this patch before apply.
Sure, thank you for bringing this to my attention.
Marcel


Thanks,
Shannon
+    return var;
+}
+






reply via email to

[Prev in Thread] Current Thread [Next in Thread]