diff options
author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2023-10-13 15:02:14 +0200 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2023-10-19 13:01:52 +0100 |
commit | 85c90d45f6bd0d931af5ff7cc37a8a34ab285489 (patch) | |
tree | dd65e1905d836d3f8fc605df758d3ba97ea0cc2d /include | |
parent | 29ecf2de024b386acc72b53b9eb0c3559883d1b6 (diff) | |
download | qemu-85c90d45f6bd0d931af5ff7cc37a8a34ab285489.zip qemu-85c90d45f6bd0d931af5ff7cc37a8a34ab285489.tar.gz qemu-85c90d45f6bd0d931af5ff7cc37a8a34ab285489.tar.bz2 |
hw/arm/exynos4210: Get arm_boot_info declaration from 'hw/arm/boot.h'
struct arm_boot_info is declared in "hw/arm/boot.h".
By including the correct header we don't need to declare
it again in "target/arm/cpu-qom.h".
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-id: 20231013130214.95742-1-philmd@linaro.org
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/hw/arm/exynos4210.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/hw/arm/exynos4210.h b/include/hw/arm/exynos4210.h index 68db19f..d33fe38 100644 --- a/include/hw/arm/exynos4210.h +++ b/include/hw/arm/exynos4210.h @@ -30,7 +30,7 @@ #include "hw/intc/exynos4210_gic.h" #include "hw/intc/exynos4210_combiner.h" #include "hw/core/split-irq.h" -#include "target/arm/cpu-qom.h" +#include "hw/arm/boot.h" #include "qom/object.h" #define EXYNOS4210_NCPUS 2 |