From patchwork Tue Oct 16 19:08:41 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Eduardo Habkost X-Patchwork-Id: 191868 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 EB6F12C00A5 for ; Wed, 17 Oct 2012 06:31:37 +1100 (EST) Received: from localhost ([::1]:33400 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TOCVf-0005Cn-Lw for incoming@patchwork.ozlabs.org; Tue, 16 Oct 2012 15:08:59 -0400 Received: from eggs.gnu.org ([208.118.235.92]:51663) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TOCUt-00031R-MC for qemu-devel@nongnu.org; Tue, 16 Oct 2012 15:08:13 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TOCUm-0001Nj-4a for qemu-devel@nongnu.org; Tue, 16 Oct 2012 15:08:11 -0400 Received: from mx1.redhat.com ([209.132.183.28]:19815) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TOCUl-0001N3-Si for qemu-devel@nongnu.org; Tue, 16 Oct 2012 15:08:04 -0400 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 q9GJ7rW3028492 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Tue, 16 Oct 2012 15:07:53 -0400 Received: from blackpad.lan.raisama.net (vpn1-4-87.gru2.redhat.com [10.97.4.87]) by int-mx11.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id q9GJ7qdP012318; Tue, 16 Oct 2012 15:07:53 -0400 Received: by blackpad.lan.raisama.net (Postfix, from userid 500) id 58AB1201558; Tue, 16 Oct 2012 16:08:46 -0300 (BRT) From: Eduardo Habkost To: qemu-devel@nongnu.org Date: Tue, 16 Oct 2012 16:08:41 -0300 Message-Id: <1350414523-8117-11-git-send-email-ehabkost@redhat.com> In-Reply-To: <1350414523-8117-1-git-send-email-ehabkost@redhat.com> References: <1350414523-8117-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: Genre and OS details not recognized. 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/12] qdev: use full qdev.h include path on qdev*.c 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 This way, the files can be moved to the qom/ directory as-is. Signed-off-by: Eduardo Habkost --- hw/qdev-core.c | 2 +- hw/qdev-properties.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hw/qdev-core.c b/hw/qdev-core.c index a756e07..fbb7cb5 100644 --- a/hw/qdev-core.c +++ b/hw/qdev-core.c @@ -25,7 +25,7 @@ inherit from a particular bus (e.g. PCI or I2C) rather than this API directly. */ -#include "qdev.h" +#include "hw/qdev.h" #include "sysemu.h" #include "error.h" #include "qapi/qapi-visit-core.h" diff --git a/hw/qdev-properties.c b/hw/qdev-properties.c index 917d986..2e82cb9 100644 --- a/hw/qdev-properties.c +++ b/hw/qdev-properties.c @@ -1,5 +1,5 @@ #include "net.h" -#include "qdev.h" +#include "hw/qdev.h" #include "qerror.h" #include "blockdev.h" #include "hw/block-common.h"