From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:50673) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TNwPY-00048J-VV for qemu-devel@nongnu.org; Mon, 15 Oct 2012 21:57:37 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TNwPX-00060i-Tj for qemu-devel@nongnu.org; Mon, 15 Oct 2012 21:57:36 -0400 Received: from mx1.redhat.com ([209.132.183.28]:21633) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TNwPX-00060c-L0 for qemu-devel@nongnu.org; Mon, 15 Oct 2012 21:57:35 -0400 From: Igor Mammedov Date: Tue, 16 Oct 2012 03:57:14 +0200 Message-Id: <1350352644-14436-3-git-send-email-imammedo@redhat.com> In-Reply-To: <1350352644-14436-1-git-send-email-imammedo@redhat.com> References: <1350352644-14436-1-git-send-email-imammedo@redhat.com> Subject: [Qemu-devel] [PATCH 02/12] qapi-types.h doesn't really need to include qemu-common.h List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: pbonzini@redhat.com, aliguori@us.ibm.com, afaerber@suse.de, ehabkost@redhat.com needed to prevent build breakage when CPU becomes a child of DeviceState Signed-off-by: Igor Mammedov Signed-off-by: Eduardo Habkost --- [ehabkost: include too] --- scripts/qapi-types.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/qapi-types.py b/scripts/qapi-types.py index 1b84834..6bc2391 100644 --- a/scripts/qapi-types.py +++ b/scripts/qapi-types.py @@ -273,7 +273,8 @@ fdecl.write(mcgen(''' #ifndef %(guard)s #define %(guard)s -#include "qemu-common.h" +#include +#include ''', guard=guardname(h_file))) -- 1.7.11.7