From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:41615) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YUYwo-0001Xy-9s for qemu-devel@nongnu.org; Sun, 08 Mar 2015 07:00:39 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YUYwn-0007q1-Fz for qemu-devel@nongnu.org; Sun, 08 Mar 2015 07:00:38 -0400 Received: from mx1.redhat.com ([209.132.183.28]:59736) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YUYwn-0007ps-27 for qemu-devel@nongnu.org; Sun, 08 Mar 2015 07:00:37 -0400 Date: Sun, 8 Mar 2015 12:00:31 +0100 From: "Michael S. Tsirkin" Message-ID: <1425812118-20220-3-git-send-email-mst@redhat.com> References: <1425812118-20220-1-git-send-email-mst@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1425812118-20220-1-git-send-email-mst@redhat.com> Subject: [Qemu-devel] [PULL v6 2/3] aml-build: comment fix List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Marcel Apfelbaum , Peter Maydell , Anthony Liguori , Igor Mammedov Signed-off-by: Michael S. Tsirkin --- include/hw/acpi/aml-build.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/hw/acpi/aml-build.h b/include/hw/acpi/aml-build.h index f6735ea..17d3beb 100644 --- a/include/hw/acpi/aml-build.h +++ b/include/hw/acpi/aml-build.h @@ -9,7 +9,7 @@ typedef enum { AML_NO_OPCODE = 0,/* has only data */ AML_OPCODE, /* has opcode optionally followed by data */ AML_PACKAGE, /* has opcode and uses PkgLength for its length */ - AML_EXT_PACKAGE, /* ame as AML_PACKAGE but also has 'ExOpPrefix' */ + AML_EXT_PACKAGE, /* Same as AML_PACKAGE but also has 'ExOpPrefix' */ AML_BUFFER, /* data encoded as 'DefBuffer' */ AML_RES_TEMPLATE, /* encoded as ResourceTemplate macro */ } AmlBlockFlags; -- MST