aboutsummaryrefslogtreecommitdiff
path: root/hw
diff options
context:
space:
mode:
authorPeng Liang <tcx4c70@gmail.com>2023-07-06 20:06:10 +0300
committerMichael Tokarev <mjt@tls.msk.ru>2023-07-08 07:24:38 +0300
commit13a637430be13bda3e6726752936321a1955bc93 (patch)
treee1f5a21ff296bff865ac48a2ecaba40ddef62add /hw
parentaaf26bd382b84c6d34390d092ff24bc8fa575f78 (diff)
downloadqemu-13a637430be13bda3e6726752936321a1955bc93.zip
qemu-13a637430be13bda3e6726752936321a1955bc93.tar.gz
qemu-13a637430be13bda3e6726752936321a1955bc93.tar.bz2
hw/arm/virt-acpi-build.c: Add missing header
virt-acpi-build.c uses warn_report. However, it doesn't include qemu/error-report.h directly, it include qemu/error-report.h via trace.h if we enable log trace backend. But if we disable the log trace backend (e.g., --enable-trace-backends=nop), then virt-acpi-build.c will not include qemu/error-report.h any more and it will lead to build errors. Include qemu/error-report.h directly in virt-acpi-build.c to avoid the errors. Fixes: 451b157041 ("acpi: Align the size to 128k") Signed-off-by: Peng Liang <tcx4c70@gmail.com> Reviewed-by: Ani Sinha <anisinha@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Michael Tokarev <mjt@tls.msk.ru> (mjt: move the #include higher as suggested by Ani Sinha)
Diffstat (limited to 'hw')
-rw-r--r--hw/arm/virt-acpi-build.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/arm/virt-acpi-build.c b/hw/arm/virt-acpi-build.c
index 55f2706..6b67423 100644
--- a/hw/arm/virt-acpi-build.c
+++ b/hw/arm/virt-acpi-build.c
@@ -29,6 +29,7 @@
#include "qemu/osdep.h"
#include "qapi/error.h"
#include "qemu/bitmap.h"
+#include "qemu/error-report.h"
#include "trace.h"
#include "hw/core/cpu.h"
#include "target/arm/cpu.h"