Skip to content

Commit

Permalink
system/qtest: Include missing 'hw/core/cpu.h' header
Browse files Browse the repository at this point in the history
"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é <philmd@linaro.org>
Message-ID: <20231212113016.29808-2-philmd@linaro.org>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
  • Loading branch information
philmd authored and huth committed Dec 20, 2023
1 parent 6c49372 commit 65eac5b
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions system/qtest.c
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 65eac5b

Please sign in to comment.