From patchwork Tue Oct 16 01:57:22 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Igor Mammedov X-Patchwork-Id: 191705 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 165AA2C0081 for ; Tue, 16 Oct 2012 12:59:05 +1100 (EST) Received: from localhost ([::1]:48970 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TNwQx-00072b-9e for incoming@patchwork.ozlabs.org; Mon, 15 Oct 2012 21:59:03 -0400 Received: from eggs.gnu.org ([208.118.235.92]:50783) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TNwPs-00057l-Ds for qemu-devel@nongnu.org; Mon, 15 Oct 2012 21:57:57 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TNwPr-00069O-Et for qemu-devel@nongnu.org; Mon, 15 Oct 2012 21:57:56 -0400 Received: from mx1.redhat.com ([209.132.183.28]:7968) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TNwPr-00067f-1O for qemu-devel@nongnu.org; Mon, 15 Oct 2012 21:57:55 -0400 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 q9G1vs7B001470 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Mon, 15 Oct 2012 21:57:54 -0400 Received: from thinkpad.com (vpn-226-9.phx2.redhat.com [10.3.226.9]) by int-mx02.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id q9G1vRwS003031; Mon, 15 Oct 2012 21:57:52 -0400 From: Igor Mammedov To: qemu-devel@nongnu.org Date: Tue, 16 Oct 2012 03:57:22 +0200 Message-Id: <1350352644-14436-11-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> X-Scanned-By: MIMEDefang 2.67 on 10.5.11.12 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 209.132.183.28 Cc: pbonzini@redhat.com, aliguori@us.ibm.com, afaerber@suse.de, ehabkost@redhat.com 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 From: Eduardo Habkost 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"