aboutsummaryrefslogtreecommitdiff
path: root/hw/mem
diff options
context:
space:
mode:
authorRichard Henderson <richard.henderson@linaro.org>2023-03-15 17:43:13 +0000
committerAlex Bennée <alex.bennee@linaro.org>2023-03-22 15:06:57 +0000
commitcc37d98bfbc5dd1f1ad89536589dedf81fab3d84 (patch)
treeecfaad6ae17a8124fe39e4ae98c70e5d68426654 /hw/mem
parente8956e0c6c2f61a235d896eb5b9941f474b6a57d (diff)
downloadqemu-cc37d98bfbc5dd1f1ad89536589dedf81fab3d84.zip
qemu-cc37d98bfbc5dd1f1ad89536589dedf81fab3d84.tar.gz
qemu-cc37d98bfbc5dd1f1ad89536589dedf81fab3d84.tar.bz2
*: Add missing includes of qemu/error-report.h
This had been pulled in via qemu/plugin.h from hw/core/cpu.h, but that will be removed. Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Message-Id: <20230310195252.210956-5-richard.henderson@linaro.org> [AJB: add various additional cases shown by CI] Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Message-Id: <20230315174331.2959-15-alex.bennee@linaro.org> Reviewed-by: Emilio Cota <cota@braap.org>
Diffstat (limited to 'hw/mem')
-rw-r--r--hw/mem/memory-device.c1
-rw-r--r--hw/mem/sparse-mem.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/hw/mem/memory-device.c b/hw/mem/memory-device.c
index d9f8301..1636db9 100644
--- a/hw/mem/memory-device.c
+++ b/hw/mem/memory-device.c
@@ -10,6 +10,7 @@
*/
#include "qemu/osdep.h"
+#include "qemu/error-report.h"
#include "hw/mem/memory-device.h"
#include "qapi/error.h"
#include "hw/boards.h"
diff --git a/hw/mem/sparse-mem.c b/hw/mem/sparse-mem.c
index 72f038d..6e8f4f8 100644
--- a/hw/mem/sparse-mem.c
+++ b/hw/mem/sparse-mem.c
@@ -11,6 +11,7 @@
*/
#include "qemu/osdep.h"
+#include "qemu/error-report.h"
#include "hw/qdev-properties.h"
#include "hw/sysbus.h"