diff options
author | Philippe Mathieu-Daudé <f4bug@amsat.org> | 2021-05-16 22:50:34 +0200 |
---|---|---|
committer | Laurent Vivier <laurent@vivier.eu> | 2021-06-05 21:10:42 +0200 |
commit | 585190902a3baae3a1609c30a9e485ec072dd72f (patch) | |
tree | e792f93d6189a220080ec7f738bade3a6e7c22ec /hw | |
parent | d84451d38e9a36ff08af9b1424ecca51ba45e3ac (diff) | |
download | qemu-585190902a3baae3a1609c30a9e485ec072dd72f.zip |
misc: Correct relative include path
Headers should be included from the 'include/' directory,
not from the root directory.
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Message-Id: <20210516205034.694788-1-f4bug@amsat.org>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'hw')
-rw-r--r-- | hw/gpio/aspeed_gpio.c | 2 | ||||
-rw-r--r-- | hw/i386/acpi-common.h | 6 | ||||
-rw-r--r-- | hw/intc/ppc-uic.c | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/hw/gpio/aspeed_gpio.c b/hw/gpio/aspeed_gpio.c index 34d8acb0e3..6ae0116be7 100644 --- a/hw/gpio/aspeed_gpio.c +++ b/hw/gpio/aspeed_gpio.c @@ -10,7 +10,7 @@ #include "qemu/host-utils.h" #include "qemu/log.h" #include "hw/gpio/aspeed_gpio.h" -#include "include/hw/misc/aspeed_scu.h" +#include "hw/misc/aspeed_scu.h" #include "qapi/error.h" #include "qapi/visitor.h" #include "hw/irq.h" diff --git a/hw/i386/acpi-common.h b/hw/i386/acpi-common.h index b12cd73ea5..a68825acf5 100644 --- a/hw/i386/acpi-common.h +++ b/hw/i386/acpi-common.h @@ -1,9 +1,9 @@ #ifndef HW_I386_ACPI_COMMON_H #define HW_I386_ACPI_COMMON_H -#include "include/hw/acpi/acpi_dev_interface.h" -#include "include/hw/acpi/bios-linker-loader.h" -#include "include/hw/i386/x86.h" +#include "hw/acpi/acpi_dev_interface.h" +#include "hw/acpi/bios-linker-loader.h" +#include "hw/i386/x86.h" /* Default IOAPIC ID */ #define ACPI_BUILD_IOAPIC_ID 0x0 diff --git a/hw/intc/ppc-uic.c b/hw/intc/ppc-uic.c index 7171de7b35..60013f2dde 100644 --- a/hw/intc/ppc-uic.c +++ b/hw/intc/ppc-uic.c @@ -23,7 +23,7 @@ */ #include "qemu/osdep.h" -#include "include/hw/intc/ppc-uic.h" +#include "hw/intc/ppc-uic.h" #include "hw/irq.h" #include "cpu.h" #include "hw/ppc/ppc.h" |