From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:39163) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1URfrI-0003FI-EW for qemu-devel@nongnu.org; Mon, 15 Apr 2013 05:37:59 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1URfrB-0002n3-U1 for qemu-devel@nongnu.org; Mon, 15 Apr 2013 05:37:56 -0400 Received: from mx1.redhat.com ([209.132.183.28]:32710) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1URfrB-0002ms-N0 for qemu-devel@nongnu.org; Mon, 15 Apr 2013 05:37:49 -0400 Received: from int-mx01.intmail.prod.int.phx2.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r3F9bniT029460 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Mon, 15 Apr 2013 05:37:49 -0400 Received: from redhat.com (vpn1-6-102.ams2.redhat.com [10.36.6.102]) by int-mx01.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with SMTP id r3F9blVD012105 for ; Mon, 15 Apr 2013 05:37:48 -0400 Date: Mon, 15 Apr 2013 12:37:46 +0300 From: "Michael S. Tsirkin" Message-ID: References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Subject: [Qemu-devel] [PATCH 3/3] acpi.h: make it self contained List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org 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