From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:42479) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UReX7-0001YD-43 for qemu-devel@nongnu.org; Mon, 15 Apr 2013 04:13:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UReX2-0003ji-8M for qemu-devel@nongnu.org; Mon, 15 Apr 2013 04:13:01 -0400 Received: from mx1.redhat.com ([209.132.183.28]:54146) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UReX2-0003jW-0P for qemu-devel@nongnu.org; Mon, 15 Apr 2013 04:12:56 -0400 Date: Mon, 15 Apr 2013 11:12:50 +0300 From: "Michael S. Tsirkin" Message-ID: <20130415081250.GA7374@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Subject: [Qemu-devel] [PATCH] acpi.h: make it self contained List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Paolo Bonzini , Anthony Liguori , Gerd Hoffmann , Bruce Rogers Headers shouldn't assume another header is included, pull in everything necessary. Signed-off-by: Michael S. Tsirkin --- include/hw/acpi/acpi.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/include/hw/acpi/acpi.h b/include/hw/acpi/acpi.h index 35f7e09..88f7378 100644 --- a/include/hw/acpi/acpi.h +++ b/include/hw/acpi/acpi.h @@ -19,6 +19,12 @@ * . */ +#include "qapi/error.h" +#include "qemu/typedefs.h" +#include "qemu/notify.h" +#include "qemu/option.h" +#include "exec/memory.h" + /* from linux include/acpi/actype.h */ /* Default ACPI register widths */ -- MST