From patchwork Fri Nov 9 13:08:25 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Eduardo Habkost X-Patchwork-Id: 198074 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 00FB72C039D for ; Sat, 10 Nov 2012 01:02:42 +1100 (EST) Received: from localhost ([::1]:55093 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TWoKD-00055w-Ny for incoming@patchwork.ozlabs.org; Fri, 09 Nov 2012 08:08:45 -0500 Received: from eggs.gnu.org ([208.118.235.92]:51560) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TWoJP-0003GC-Iw for qemu-devel@nongnu.org; Fri, 09 Nov 2012 08:08:02 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TWoJF-0004Xi-BV for qemu-devel@nongnu.org; Fri, 09 Nov 2012 08:07:55 -0500 Received: from mx1.redhat.com ([209.132.183.28]:45483) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TWoJE-0004WW-Vm for qemu-devel@nongnu.org; Fri, 09 Nov 2012 08:07:45 -0500 Received: from int-mx02.intmail.prod.int.phx2.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id qA9D7XJ5008959 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Fri, 9 Nov 2012 08:07:33 -0500 Received: from blackpad.lan.raisama.net (vpn1-4-237.gru2.redhat.com [10.97.4.237]) by int-mx02.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id qA9D7W3V021328; Fri, 9 Nov 2012 08:07:33 -0500 Received: by blackpad.lan.raisama.net (Postfix, from userid 500) id A146B203420; Fri, 9 Nov 2012 11:08:47 -0200 (BRST) From: Eduardo Habkost To: qemu-devel@nongnu.org Date: Fri, 9 Nov 2012 11:08:25 -0200 Message-Id: <1352466519-5779-11-git-send-email-ehabkost@redhat.com> In-Reply-To: <1352466519-5779-1-git-send-email-ehabkost@redhat.com> References: <1352466519-5779-1-git-send-email-ehabkost@redhat.com> X-Scanned-By: MIMEDefang 2.67 on 10.5.11.12 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 209.132.183.28 Cc: peter.maydell@linaro.org, riku.voipio@iki.fi, blauwirbel@gmail.com, Anthony Liguori , Igor Mammedov , =?UTF-8?q?Andreas=20F=C3=A4rber?= Subject: [Qemu-devel] [PATCH 10/24] qemu-config.h: include headers it needs 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 Include: - for FILE - qemu-option.h for QemuOptsList Some of those headers were probably being included by accident because some other headers were including qemu-common.h, but those headers should eventually stop including qemu-common.h. Signed-off-by: Eduardo Habkost --- qemu-config.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/qemu-config.h b/qemu-config.h index 5557562..812c4c5 100644 --- a/qemu-config.h +++ b/qemu-config.h @@ -1,6 +1,8 @@ #ifndef QEMU_CONFIG_H #define QEMU_CONFIG_H +#include +#include "qemu-option.h" #include "error.h" extern QemuOptsList qemu_fsdev_opts;