From e6407b73a39bcbdce26b37e33c22043fe9d00d8c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philippe=20Mathieu-Daud=C3=A9?= Date: Fri, 13 Mar 2026 06:07:16 +0100 Subject: [PATCH] hw/ppc: Include full path to target 'cpu.h' header MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Philippe Mathieu-Daudé Reviewed-by: Pierrick Bouvier Message-Id: <20260313062055.2188-30-philmd@linaro.org> --- hw/ppc/mpc8544_guts.c | 2 +- hw/ppc/mpc8544ds.c | 2 +- hw/ppc/ppc440_uc.c | 2 +- hw/ppc/ppc4xx_devs.c | 2 +- hw/ppc/ppc_booke.c | 2 +- hw/ppc/prep_systemio.c | 2 +- hw/ppc/spapr_vhyp_mmu.c | 2 +- hw/ppc/virtex_ml507.c | 2 +- include/hw/ppc/pnv.h | 2 +- include/hw/ppc/spapr_fadump.h | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) diff --git a/hw/ppc/mpc8544_guts.c b/hw/ppc/mpc8544_guts.c index 88ae573d1e..3f2bbc0a51 100644 --- a/hw/ppc/mpc8544_guts.c +++ b/hw/ppc/mpc8544_guts.c @@ -20,7 +20,7 @@ #include "qemu/osdep.h" #include "qemu/log.h" #include "system/runstate.h" -#include "cpu.h" +#include "target/ppc/cpu.h" #include "hw/core/sysbus.h" #include "qom/object.h" diff --git a/hw/ppc/mpc8544ds.c b/hw/ppc/mpc8544ds.c index 582698559d..6a5d3edc49 100644 --- a/hw/ppc/mpc8544ds.c +++ b/hw/ppc/mpc8544ds.c @@ -15,7 +15,7 @@ #include "hw/ppc/openpic.h" #include "qemu/error-report.h" #include "qemu/units.h" -#include "cpu.h" +#include "target/ppc/cpu.h" static void mpc8544ds_fixup_devtree(void *fdt) { diff --git a/hw/ppc/ppc440_uc.c b/hw/ppc/ppc440_uc.c index 0f28a7937f..634046506e 100644 --- a/hw/ppc/ppc440_uc.c +++ b/hw/ppc/ppc440_uc.c @@ -19,7 +19,7 @@ #include "hw/pci/pci.h" #include "exec/cpu-common.h" #include "system/reset.h" -#include "cpu.h" +#include "target/ppc/cpu.h" #include "ppc440.h" /*****************************************************************************/ diff --git a/hw/ppc/ppc4xx_devs.c b/hw/ppc/ppc4xx_devs.c index 1e6b6fec5d..ae1ac4f467 100644 --- a/hw/ppc/ppc4xx_devs.c +++ b/hw/ppc/ppc4xx_devs.c @@ -23,7 +23,7 @@ */ #include "qemu/osdep.h" -#include "cpu.h" +#include "target/ppc/cpu.h" #include "hw/ppc/ppc4xx.h" #include "hw/core/qdev-properties.h" #include "qapi/error.h" diff --git a/hw/ppc/ppc_booke.c b/hw/ppc/ppc_booke.c index 7c6e5df9fd..052c8c931a 100644 --- a/hw/ppc/ppc_booke.c +++ b/hw/ppc/ppc_booke.c @@ -23,7 +23,7 @@ */ #include "qemu/osdep.h" -#include "cpu.h" +#include "target/ppc/cpu.h" #include "exec/target_page.h" #include "hw/ppc/ppc.h" #include "qemu/timer.h" diff --git a/hw/ppc/prep_systemio.c b/hw/ppc/prep_systemio.c index bc8b0964e7..5cd18a9e12 100644 --- a/hw/ppc/prep_systemio.c +++ b/hw/ppc/prep_systemio.c @@ -33,7 +33,7 @@ #include "qemu/error-report.h" /* for error_report() */ #include "qemu/module.h" #include "system/runstate.h" -#include "cpu.h" +#include "target/ppc/cpu.h" #include "trace.h" #define TYPE_PREP_SYSTEMIO "prep-systemio" diff --git a/hw/ppc/spapr_vhyp_mmu.c b/hw/ppc/spapr_vhyp_mmu.c index 2d41d7f77b..9cc3aeb2a2 100644 --- a/hw/ppc/spapr_vhyp_mmu.c +++ b/hw/ppc/spapr_vhyp_mmu.c @@ -11,7 +11,7 @@ #include "qemu/cutils.h" #include "qemu/memalign.h" #include "qemu/error-report.h" -#include "cpu.h" +#include "target/ppc/cpu.h" #include "helper_regs.h" #include "hw/ppc/spapr.h" #include "mmu-hash64.h" diff --git a/hw/ppc/virtex_ml507.c b/hw/ppc/virtex_ml507.c index 51b3d7d712..d10d913589 100644 --- a/hw/ppc/virtex_ml507.c +++ b/hw/ppc/virtex_ml507.c @@ -26,7 +26,7 @@ #include "qemu/datadir.h" #include "qemu/units.h" #include "exec/page-protection.h" -#include "cpu.h" +#include "target/ppc/cpu.h" #include "hw/core/sysbus.h" #include "hw/char/serial-mm.h" #include "hw/block/flash.h" diff --git a/include/hw/ppc/pnv.h b/include/hw/ppc/pnv.h index 90028f974d..ce3ce73b53 100644 --- a/include/hw/ppc/pnv.h +++ b/include/hw/ppc/pnv.h @@ -20,7 +20,7 @@ #ifndef PPC_PNV_H #define PPC_PNV_H -#include "cpu.h" +#include "target/ppc/cpu.h" #include "hw/core/boards.h" #include "hw/core/sysbus.h" #include "hw/ipmi/ipmi.h" diff --git a/include/hw/ppc/spapr_fadump.h b/include/hw/ppc/spapr_fadump.h index 82681fb9a6..778981bc95 100644 --- a/include/hw/ppc/spapr_fadump.h +++ b/include/hw/ppc/spapr_fadump.h @@ -6,7 +6,7 @@ #ifndef PPC_SPAPR_FADUMP_H #define PPC_SPAPR_FADUMP_H -#include "cpu.h" +#include "target/ppc/cpu.h" /* Fadump commands */ #define FADUMP_CMD_REGISTER 1