From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:38909) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1USvJg-00034T-Bg for qemu-devel@nongnu.org; Thu, 18 Apr 2013 16:20:28 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1USvJd-0000oX-A2 for qemu-devel@nongnu.org; Thu, 18 Apr 2013 16:20:24 -0400 Received: from mx1.redhat.com ([209.132.183.28]:13619) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1USvJd-0000oS-1a for qemu-devel@nongnu.org; Thu, 18 Apr 2013 16:20:21 -0400 Received: from int-mx12.intmail.prod.int.phx2.redhat.com (int-mx12.intmail.prod.int.phx2.redhat.com [10.5.11.25]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r3IKKKaP016921 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Thu, 18 Apr 2013 16:20:20 -0400 From: Laszlo Ersek Date: Thu, 18 Apr 2013 22:22:22 +0200 Message-Id: <1366316544-1428-6-git-send-email-lersek@redhat.com> In-Reply-To: <1366316544-1428-1-git-send-email-lersek@redhat.com> References: <1366316544-1428-1-git-send-email-lersek@redhat.com> Subject: [Qemu-devel] [PATCH v4 5/7] hw/acpi: export acpi_checksum() List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: mst@redhat.com, qemu-devel@nongnu.org Again, this enables reuse when preparing per-table fw_cfg blobs later. Signed-off-by: Laszlo Ersek Acked-by: Michael S. Tsirkin --- 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