From patchwork Fri Nov 30 19:27:14 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Eduardo Habkost X-Patchwork-Id: 203035 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id C29D92C0087 for ; Sat, 1 Dec 2012 06:59:55 +1100 (EST) Received: from localhost ([::1]:43907 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TeWEn-0000DF-97 for incoming@patchwork.ozlabs.org; Fri, 30 Nov 2012 14:27:01 -0500 Received: from eggs.gnu.org ([208.118.235.92]:50191) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TeWDq-0006Ip-3Y for qemu-devel@nongnu.org; Fri, 30 Nov 2012 14:26:02 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TeWDk-0004I5-Hl for qemu-devel@nongnu.org; Fri, 30 Nov 2012 14:26:01 -0500 Received: from mx1.redhat.com ([209.132.183.28]:56150) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TeWDj-0004H7-Vy for qemu-devel@nongnu.org; Fri, 30 Nov 2012 14:25:56 -0500 Received: from int-mx11.intmail.prod.int.phx2.redhat.com (int-mx11.intmail.prod.int.phx2.redhat.com [10.5.11.24]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id qAUJPqYo004708 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Fri, 30 Nov 2012 14:25:52 -0500 Received: from blackpad.lan.raisama.net (vpn1-5-169.gru2.redhat.com [10.97.5.169]) by int-mx11.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id qAUJPpto021347; Fri, 30 Nov 2012 14:25:52 -0500 Received: by blackpad.lan.raisama.net (Postfix, from userid 500) id 88DAF200DA0; Fri, 30 Nov 2012 17:27:24 -0200 (BRST) From: Eduardo Habkost To: qemu-devel@nongnu.org Date: Fri, 30 Nov 2012 17:27:14 -0200 Message-Id: <1354303642-4283-3-git-send-email-ehabkost@redhat.com> In-Reply-To: <1354303642-4283-1-git-send-email-ehabkost@redhat.com> References: <1354303642-4283-1-git-send-email-ehabkost@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.24 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 209.132.183.28 Cc: Igor Mammedov , =?UTF-8?q?Andreas=20F=C3=A4rber?= , Anthony Liguori Subject: [Qemu-devel] [RFC 02/10] sysemu.h: include qemu-types.h instead of qemu-common.h X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org It just needs the Monitor and DeviceState typedefs, so it doesn't need all of qemu-common.h. Signed-off-by: Eduardo Habkost --- sysemu.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sysemu.h b/sysemu.h index f5ac664..ab1ef8b 100644 --- a/sysemu.h +++ b/sysemu.h @@ -2,7 +2,7 @@ #define SYSEMU_H /* Misc. things related to the system emulator. */ -#include "qemu-common.h" +#include "qemu-types.h" #include "qemu-option.h" #include "qemu-queue.h" #include "qemu-timer.h"