aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilippe Mathieu-Daudé <philmd@linaro.org>2023-08-28 16:19:30 +0200
committerPhilippe Mathieu-Daudé <philmd@linaro.org>2023-08-31 19:47:43 +0200
commite78d2f9c0af895e5c3783a41d0687d8afca2d907 (patch)
treef95aec58283d9e9f4f1e0a1567bceb1edfdacbbc
parent05e94d80c9773b18811d3d459e4259f27cc7b4e2 (diff)
downloadqemu-e78d2f9c0af895e5c3783a41d0687d8afca2d907.zip
qemu-e78d2f9c0af895e5c3783a41d0687d8afca2d907.tar.gz
qemu-e78d2f9c0af895e5c3783a41d0687d8afca2d907.tar.bz2
target/ppc/pmu: Include missing 'qemu/timer.h' header
Since commit c2eff582a3 ("target/ppc: PMU basic cycle count for pseries TCG") pmu_update_cycles() uses QEMU_CLOCK_VIRTUAL and calls qemu_clock_get_ns(), both defined in "qemu/timer.h". Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20230828221314.18435-2-philmd@linaro.org>
-rw-r--r--target/ppc/power8-pmu.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/target/ppc/power8-pmu.c b/target/ppc/power8-pmu.c
index 7bb4bf8..2537cde 100644
--- a/target/ppc/power8-pmu.c
+++ b/target/ppc/power8-pmu.c
@@ -16,6 +16,7 @@
#include "exec/exec-all.h"
#include "exec/helper-proto.h"
#include "qemu/error-report.h"
+#include "qemu/timer.h"
#include "qemu/main-loop.h"
#include "hw/ppc/ppc.h"
#include "power8-pmu.h"