From: Philippe Mathieu-Daudé Date: Tue, 13 Dec 2022 12:35:48 +0000 (+0100) Subject: hw/ppc/vof: Do not include the full "cpu.h" X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=31b55f5bdadc74e980e76a932aace79444ab4e2f;p=qmiga%2Fqemu.git hw/ppc/vof: Do not include the full "cpu.h" "vof.h" doesn't need the full "cpu.h" to get the target_ulong definition, including "exec/cpu-defs.h" is enough. Signed-off-by: Philippe Mathieu-Daudé Reviewed-by: Daniel Henrique Barboza Message-Id: <20221213123550.39302-3-philmd@linaro.org> Signed-off-by: Daniel Henrique Barboza --- diff --git a/include/hw/ppc/vof.h b/include/hw/ppc/vof.h index f8c0effcaf..d3f293da8b 100644 --- a/include/hw/ppc/vof.h +++ b/include/hw/ppc/vof.h @@ -9,7 +9,7 @@ #include "qom/object.h" #include "exec/address-spaces.h" #include "exec/memory.h" -#include "cpu.h" +#include "exec/cpu-defs.h" typedef struct Vof { uint64_t top_addr; /* copied from rma_size */