misc: Correct relative include path
authorPhilippe Mathieu-Daudé <f4bug@amsat.org>
Sun, 16 May 2021 20:50:34 +0000 (22:50 +0200)
committerLaurent Vivier <laurent@vivier.eu>
Sat, 5 Jun 2021 19:10:42 +0000 (21:10 +0200)
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>
hw/gpio/aspeed_gpio.c
hw/i386/acpi-common.h
hw/intc/ppc-uic.c
include/monitor/monitor.h

index 34d8acb0e37a72bfe8e8a098a33ad4feb1065139..6ae0116be70bc44a3cc4e66e680227ac4d1322bc 100644 (file)
@@ -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"
index b12cd73ea5de9f4c63ae45b24c1a472ed9b0bc0b..a68825acf50b411edaec0f2922d10449113d3e5c 100644 (file)
@@ -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
index 7171de7b35582b543eefabce5f6860e6ea1a1cce..60013f2dde3475849dc67eaacbc0b36266317025 100644 (file)
@@ -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"
index af3887bb71d527ef3ee52e39d00de42585ff325c..1211d6e6d69f276cf7c0af2e9dea0e2028a1c3ec 100644 (file)
@@ -4,7 +4,7 @@
 #include "block/block.h"
 #include "qapi/qapi-types-misc.h"
 #include "qemu/readline.h"
-#include "include/exec/hwaddr.h"
+#include "exec/hwaddr.h"
 
 typedef struct MonitorHMP MonitorHMP;
 typedef struct MonitorOptions MonitorOptions;