From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:33683) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1URtf2-0006gq-1l for qemu-devel@nongnu.org; Mon, 15 Apr 2013 20:22:16 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1URtex-00077A-FN for qemu-devel@nongnu.org; Mon, 15 Apr 2013 20:22:11 -0400 Received: from mx1.redhat.com ([209.132.183.28]:26358) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1URtex-00076K-5T for qemu-devel@nongnu.org; Mon, 15 Apr 2013 20:22:07 -0400 Received: from int-mx11.intmail.prod.int.phx2.redhat.com (int-mx11.intmail.prod.int.phx2.redhat.com [10.5.11.24]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r3G0M6cM025024 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Mon, 15 Apr 2013 20:22:06 -0400 From: Laszlo Ersek Date: Tue, 16 Apr 2013 02:24:12 +0200 Message-Id: <1366071854-8917-6-git-send-email-lersek@redhat.com> In-Reply-To: <1366071854-8917-1-git-send-email-lersek@redhat.com> References: <1366071854-8917-1-git-send-email-lersek@redhat.com> Subject: [Qemu-devel] [PATCH v3 5/7] hw/acpi: export acpi_checksum() List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org, mst@redhat.com Again, this enables reuse when preparing per-table fw_cfg blobs later. Signed-off-by: Laszlo Ersek --- include/hw/acpi/acpi.h | 2 ++ hw/acpi/core.c | 2 +- 2 files changed, 3 insertions(+), 1 deletions(-) diff --git a/include/hw/acpi/acpi.h b/include/hw/acpi/acpi.h index bc7e107..7e51110 100644 --- a/include/hw/acpi/acpi.h +++ b/include/hw/acpi/acpi.h @@ -180,4 +180,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/core.c b/hw/acpi/core.c index 36a4d03..3be7e09 100644 --- a/hw/acpi/core.c +++ b/hw/acpi/core.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