From: Efimov Vasily Date: Wed, 22 Jun 2016 12:24:45 +0000 (+0300) Subject: ide: move headers to include folder X-Git-Tag: v2.7.0-rc0~75^2~34 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=e8ad4d16808690e9c0d68b140218ca466c9309fc;p=users%2Fdwmw2%2Fqemu.git 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 --- 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