misc: Use QEMU header path relative to include/ directory
authorPhilippe Mathieu-Daudé <philmd@linaro.org>
Tue, 7 May 2024 14:05:48 +0000 (16:05 +0200)
committerPhilippe Mathieu-Daudé <philmd@linaro.org>
Wed, 8 May 2024 22:07:21 +0000 (00:07 +0200)
QEMU headers are relative to the include/ directory,
not to the project root directory. Remove "include/".

See also:
https://www.qemu.org/docs/master/devel/style.html#include-directives

Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20240507142737.95735-1-philmd@linaro.org>

hw/audio/virtio-snd.c
hw/rtc/ls7a_rtc.c
target/i386/gdbstub.c
tests/qtest/nvme-test.c
tests/qtest/ufs-test.c

index 6a2ee085c072f5ce077918bf858f71c19a94d24f..7d09800d1f36ebe738e6f77de6d3e1dc64830d52 100644 (file)
@@ -19,7 +19,7 @@
 #include "qemu/iov.h"
 #include "qemu/log.h"
 #include "qemu/error-report.h"
-#include "include/qemu/lockable.h"
+#include "qemu/lockable.h"
 #include "exec/tswap.h"
 #include "sysemu/runstate.h"
 #include "trace.h"
index ac28c1165bfec818619d5812fe87ac8f180cf474..052201c2cd5457551e7cc5a27e4406427c89c972 100644 (file)
@@ -8,7 +8,7 @@
 #include "qemu/osdep.h"
 #include "hw/sysbus.h"
 #include "hw/irq.h"
-#include "include/hw/register.h"
+#include "hw/register.h"
 #include "qemu/timer.h"
 #include "sysemu/sysemu.h"
 #include "qemu/cutils.h"
index ebb000df6a713fe83ae4aa8645c9b3ada9c82e8e..4acf485879e726a58a3ebde8e635ee25e693b732 100644 (file)
@@ -19,7 +19,7 @@
  */
 #include "qemu/osdep.h"
 #include "cpu.h"
-#include "include/gdbstub/helpers.h"
+#include "gdbstub/helpers.h"
 
 #ifdef TARGET_X86_64
 static const int gpr_map[16] = {
index 008d189b0faf8fc4cb924a9c77535f7bf909a6e6..5ad6821f7af92e24ec397b17aaf28ea9abbddc2a 100644 (file)
@@ -13,7 +13,7 @@
 #include "libqtest.h"
 #include "libqos/qgraph.h"
 #include "libqos/pci.h"
-#include "include/block/nvme.h"
+#include "block/nvme.h"
 
 typedef struct QNvme QNvme;
 
index 95e82f94727f9e09d702c9eaf4c9eb65ab0e45a7..82ec3f06715ad629461df09f5844094a399aec20 100644 (file)
@@ -13,7 +13,7 @@
 #include "libqos/qgraph.h"
 #include "libqos/pci.h"
 #include "scsi/constants.h"
-#include "include/block/ufs.h"
+#include "block/ufs.h"
 
 /* Test images sizes in Bytes */
 #define TEST_IMAGE_SIZE (64 * 1024 * 1024)