From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:55429) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TJqsh-0001um-9I for qemu-devel@nongnu.org; Thu, 04 Oct 2012 15:14:48 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TJqsf-0003l1-5e for qemu-devel@nongnu.org; Thu, 04 Oct 2012 15:14:47 -0400 Received: from mx1.redhat.com ([209.132.183.28]:47107) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TJqse-0003kN-Sy for qemu-devel@nongnu.org; Thu, 04 Oct 2012 15:14:45 -0400 From: Eduardo Habkost Date: Thu, 4 Oct 2012 16:15:31 -0300 Message-Id: <1349378133-25644-12-git-send-email-ehabkost@redhat.com> In-Reply-To: <1349378133-25644-1-git-send-email-ehabkost@redhat.com> References: <1349378133-25644-1-git-send-email-ehabkost@redhat.com> Subject: [Qemu-devel] [RFC 11/13] qdev: use full qdev.h include path on qdev*.c List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Igor Mammedov , =?UTF-8?q?Andreas=20F=C3=A4rber?= , Anthony Liguori , Paolo Bonzini 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 46ab239..472fe8f 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" -- 1.7.11.4