From: Philippe Mathieu-Daudé Date: Tue, 12 Dec 2023 11:30:15 +0000 (+0100) Subject: system/qtest: Include missing 'hw/core/cpu.h' header X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=65eac5bd547f6e8abffb3e85bd2d793c609ab396;p=qemu.git system/qtest: Include missing 'hw/core/cpu.h' header "hw/core/cpu.h" declares 'first_cpu'. Include it to avoid when unrelated headers are refactored: system/qtest.c:548:33: error: use of undeclared identifier 'first_cpu' address_space_write(first_cpu->as, addr, MEMTXATTRS_UNSPECIFIED, ^ Signed-off-by: Philippe Mathieu-Daudé Message-ID: <20231212113016.29808-2-philmd@linaro.org> Reviewed-by: Thomas Huth Signed-off-by: Thomas Huth --- diff --git a/system/qtest.c b/system/qtest.c index 7964f0b248..6da58b3874 100644 --- a/system/qtest.c +++ b/system/qtest.c @@ -21,6 +21,7 @@ #include "exec/tswap.h" #include "hw/qdev-core.h" #include "hw/irq.h" +#include "hw/core/cpu.h" #include "qemu/accel.h" #include "sysemu/cpu-timers.h" #include "qemu/config-file.h"