From e8ad4d16808690e9c0d68b140218ca466c9309fc Mon Sep 17 00:00:00 2001 From: Efimov Vasily Date: Wed, 22 Jun 2016 15:24:45 +0300 Subject: [PATCH] ide: move headers to include folder The patch moves "hw/ide/achi.h", "hw/ide/pci.h" and "hw/ide/internal.h" headers to corresponding folders inside "include" folder alike other Qemu headers. Signed-off-by: Efimov Vasily Signed-off-by: Paolo Bonzini --- hw/ide/ahci.c | 2 +- {hw => include/hw}/ide/ahci.h | 0 {hw => include/hw}/ide/internal.h | 0 {hw => include/hw}/ide/pci.h | 0 4 files changed, 1 insertion(+), 1 deletion(-) rename {hw => include/hw}/ide/ahci.h (100%) rename {hw => include/hw}/ide/internal.h (100%) rename {hw => include/hw}/ide/pci.h (100%) diff --git a/hw/ide/ahci.c b/hw/ide/ahci.c index 502d4f1c7b..b1a7b65a7b 100644 --- a/hw/ide/ahci.c +++ b/hw/ide/ahci.c @@ -30,7 +30,7 @@ #include "qemu/error-report.h" #include "sysemu/block-backend.h" #include "sysemu/dma.h" -#include "internal.h" +#include #include #include diff --git a/hw/ide/ahci.h b/include/hw/ide/ahci.h similarity index 100% rename from hw/ide/ahci.h rename to include/hw/ide/ahci.h diff --git a/hw/ide/internal.h b/include/hw/ide/internal.h similarity index 100% rename from hw/ide/internal.h rename to include/hw/ide/internal.h diff --git a/hw/ide/pci.h b/include/hw/ide/pci.h similarity index 100% rename from hw/ide/pci.h rename to include/hw/ide/pci.h