From: Philippe Mathieu-Daudé Date: Tue, 27 Jun 2023 11:51:23 +0000 (+0200) Subject: target/ppc: Restrict 'kvm_ppc.h' to sysemu in cpu_init.c X-Git-Tag: v8.1.0-rc0~23^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d0815cb808fe0cebe04aba5339e3f5cfe08cb4d7;p=thirdparty%2Fqemu.git target/ppc: Restrict 'kvm_ppc.h' to sysemu in cpu_init.c User emulation shouldn't need any of the KVM prototypes declared in "kvm_ppc.h". Signed-off-by: Philippe Mathieu-Daudé Reviewed-by: Cédric Le Goater Reviewed-by: Greg Kurz Message-ID: <20230627115124.19632-6-philmd@linaro.org> Signed-off-by: Daniel Henrique Barboza --- diff --git a/target/ppc/cpu_init.c b/target/ppc/cpu_init.c index 6ac1765a8d9..02b7aad9b0e 100644 --- a/target/ppc/cpu_init.c +++ b/target/ppc/cpu_init.c @@ -21,7 +21,6 @@ #include "qemu/osdep.h" #include "disas/dis-asm.h" #include "gdbstub/helpers.h" -#include "kvm_ppc.h" #include "sysemu/cpus.h" #include "sysemu/hw_accel.h" #include "sysemu/tcg.h" @@ -49,6 +48,7 @@ #ifndef CONFIG_USER_ONLY #include "hw/boards.h" #include "hw/intc/intc.h" +#include "kvm_ppc.h" #endif /* #define PPC_DEBUG_SPR */