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 <r...@ispras.ru> --- 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 502d4f1..b1a7b65 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 <hw/ide/internal.h> #include <hw/ide/pci.h> #include <hw/ide/ahci.h> 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 -- 2.7.4