From: Philippe Mathieu-Daudé Date: Fri, 9 Feb 2024 15:00:37 +0000 (+0100) Subject: cpu-target: Include missing 'exec/memory.h' header X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=5f8d88bdeb4df6fc7d2a801719adfc92a8ff235a;p=qemu.git cpu-target: Include missing 'exec/memory.h' header Include "exec/memory.h" in order to avoid: cpu-target.c:201:50: error: use of undeclared identifier 'TYPE_MEMORY_REGION' DEFINE_PROP_LINK("memory", CPUState, memory, TYPE_MEMORY_REGION, ^ Signed-off-by: Philippe Mathieu-Daudé Reviewed-by: Peter Maydell Reviewed-by: Michael Tokarev Signed-off-by: Michael Tokarev --- diff --git a/cpu-target.c b/cpu-target.c index 958d63e882..86444cc2c6 100644 --- a/cpu-target.c +++ b/cpu-target.c @@ -31,6 +31,7 @@ #else #include "hw/core/sysemu-cpu-ops.h" #include "exec/address-spaces.h" +#include "exec/memory.h" #endif #include "sysemu/cpus.h" #include "sysemu/tcg.h"