From: Claudio Fontana Date: Fri, 17 Feb 2023 20:11:31 +0000 (-0300) Subject: target/arm: Move psci.c into the tcg directory X-Git-Tag: v8.0.0-rc0~43^2~19 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9def656e7a23515d5afd5e5e350574d1dfb7fcc9;p=thirdparty%2Fqemu.git target/arm: Move psci.c into the tcg directory Signed-off-by: Claudio Fontana Signed-off-by: Fabiano Rosas Reviewed-by: Richard Henderson Reviewed-by: Alex Bennée Tested-by: Philippe Mathieu-Daudé Signed-off-by: Peter Maydell --- diff --git a/target/arm/meson.build b/target/arm/meson.build index 3e2f4030056..a5191b57e1c 100644 --- a/target/arm/meson.build +++ b/target/arm/meson.build @@ -22,7 +22,6 @@ arm_softmmu_ss.add(files( 'arm-powerctl.c', 'machine.c', 'monitor.c', - 'psci.c', 'ptw.c', )) diff --git a/target/arm/tcg/meson.build b/target/arm/tcg/meson.build index 1f27ba1272e..fa8a9eab933 100644 --- a/target/arm/tcg/meson.build +++ b/target/arm/tcg/meson.build @@ -43,3 +43,7 @@ arm_ss.add(when: 'TARGET_AARCH64', if_true: files( 'sme_helper.c', 'sve_helper.c', )) + +arm_softmmu_ss.add(files( + 'psci.c', +)) diff --git a/target/arm/psci.c b/target/arm/tcg/psci.c similarity index 100% rename from target/arm/psci.c rename to target/arm/tcg/psci.c