From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:33492) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1URgsA-0002R7-Dt for qemu-devel@nongnu.org; Mon, 15 Apr 2013 06:42:56 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1URgs9-0004Tq-CJ for qemu-devel@nongnu.org; Mon, 15 Apr 2013 06:42:54 -0400 Received: from mail-qc0-x22e.google.com ([2607:f8b0:400d:c01::22e]:50476) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1URgs9-0004Tm-7c for qemu-devel@nongnu.org; Mon, 15 Apr 2013 06:42:53 -0400 Received: by mail-qc0-f174.google.com with SMTP id z24so1485694qcq.5 for ; Mon, 15 Apr 2013 03:42:52 -0700 (PDT) Sender: Paolo Bonzini Message-ID: <516BD9A4.2050307@redhat.com> Date: Mon, 15 Apr 2013 12:42:44 +0200 From: Paolo Bonzini MIME-Version: 1.0 References: <5899f1a3f5671520e17a6a3779c6defa5ae4a6e9.1366018642.git.mst@redhat.com> In-Reply-To: <5899f1a3f5671520e17a6a3779c6defa5ae4a6e9.1366018642.git.mst@redhat.com> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH 1/3] acpi: move declarations from pc.h to acpi.h List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: "Michael S. Tsirkin" Cc: qemu-devel@nongnu.org Il 15/04/2013 11:37, Michael S. Tsirkin ha scritto: > +/* acpi.c */ > +extern int acpi_enabled; > +extern char unsigned *acpi_tables; > +extern size_t acpi_tables_len; > + > +void acpi_table_install(const char unsigned *blob, size_t bloblen, > + bool has_header, const struct AcpiTableOptions *hdrs, > + Error **errp); This function is static, I've fixed it up and will include it in the hw/ fixups pull request. I picked up patch 3 as well, I'll leave 2 to Laszlo. Paolo > +void acpi_table_add(const QemuOpts *opts, Error **errp);