From: Philippe Mathieu-Daudé Date: Tue, 19 Dec 2023 17:57:44 +0000 (+0000) Subject: hw/intc/arm_gicv3: Include missing 'qemu/error-report.h' header X-Git-Tag: v9.0.0-rc0~135^2~21 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5db30bcd7dcd0bc8053ed521dc6e50153aadf125;p=thirdparty%2Fqemu.git hw/intc/arm_gicv3: Include missing 'qemu/error-report.h' header kvm_arm_its_reset_hold() calls warn_report(), itself declared in "qemu/error-report.h". Signed-off-by: Philippe Mathieu-Daudé Reviewed-by: Richard Henderson Reviewed-by: Gavin Shan Message-id: 20231123183518.64569-2-philmd@linaro.org Signed-off-by: Peter Maydell --- diff --git a/hw/intc/arm_gicv3_its_kvm.c b/hw/intc/arm_gicv3_its_kvm.c index f7df602cfff..3befc960db2 100644 --- a/hw/intc/arm_gicv3_its_kvm.c +++ b/hw/intc/arm_gicv3_its_kvm.c @@ -21,6 +21,7 @@ #include "qemu/osdep.h" #include "qapi/error.h" #include "qemu/module.h" +#include "qemu/error-report.h" #include "hw/intc/arm_gicv3_its_common.h" #include "hw/qdev-properties.h" #include "sysemu/runstate.h"