From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:45485) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UPBr4-000379-8Z for qemu-devel@nongnu.org; Mon, 08 Apr 2013 09:11:34 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UPBqv-0004Mv-Ej for qemu-devel@nongnu.org; Mon, 08 Apr 2013 09:11:26 -0400 Received: from mx1.redhat.com ([209.132.183.28]:37421) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UPBqv-0004Mj-7f for qemu-devel@nongnu.org; Mon, 08 Apr 2013 09:11:17 -0400 From: Laszlo Ersek Date: Mon, 8 Apr 2013 15:13:22 +0200 Message-Id: <1365426803-1781-5-git-send-email-lersek@redhat.com> In-Reply-To: <1365426803-1781-1-git-send-email-lersek@redhat.com> References: <1365426803-1781-1-git-send-email-lersek@redhat.com> Subject: [Qemu-devel] [qemu PATCH 4/5] hw/acpi: export acpi_checksum() List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: aliguori@us.ibm.com, qemu-devel@nongnu.org, seabios@seabios.org Again, this enables reuse when preparing per-table fw_cfg blobs later. Signed-off-by: Laszlo Ersek --- hw/acpi.h | 2 ++ hw/acpi.c | 2 +- 2 files changed, 3 insertions(+), 1 deletions(-) diff --git a/hw/acpi.h b/hw/acpi.h index e3e17e9..2c89e59 100644 --- a/hw/acpi.h +++ b/hw/acpi.h @@ -167,4 +167,6 @@ typedef struct acpi_table_std_header { } QEMU_PACKED AcpiTableStdHdr; extern const AcpiTableStdHdr acpi_dfl_hdr; + +int acpi_checksum(const uint8_t *data, int len); #endif /* !QEMU_HW_ACPI_H */ diff --git a/hw/acpi.c b/hw/acpi.c index f24be53..07634e1 100644 --- a/hw/acpi.c +++ b/hw/acpi.c @@ -69,7 +69,7 @@ static void acpi_register_config(void) machine_init(acpi_register_config); -static int acpi_checksum(const uint8_t *data, int len) +int acpi_checksum(const uint8_t *data, int len) { int sum, i; sum = 0; -- 1.7.1