summaryrefslogtreecommitdiff
path: root/hw/intc
diff options
context:
space:
mode:
authorPeter Maydell <peter.maydell@linaro.org>2016-06-20 10:57:14 +0100
committerPeter Maydell <peter.maydell@linaro.org>2016-06-20 11:35:15 +0100
commitb1e3493b25bf3d9363cfbb2c58ab395259d5585c (patch)
treeda825702817b7bdd4ad0bc815030719fbb3e4a37 /hw/intc
parent482b61844ae7c6df39df0b48ac90ffbc87bed7d2 (diff)
downloadqemu-b1e3493b25bf3d9363cfbb2c58ab395259d5585c.tar.gz
hw/intc/arm_gicv3: Fix compilation with simple trace backend
Fix missing includes of qemu/log.h, which broke compilation with the simple trace backend (the default backend pulls in log.h implicitly via trace.h). Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Sergey Fedorov <sergey.fedorov@linaro.org> Tested-by: Sergey Fedorov <sergey.fedorov@linaro.org> Message-id: 1466416634-9798-1-git-send-email-peter.maydell@linaro.org
Diffstat (limited to 'hw/intc')
-rw-r--r--hw/intc/arm_gicv3_dist.c1
-rw-r--r--hw/intc/arm_gicv3_redist.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/hw/intc/arm_gicv3_dist.c b/hw/intc/arm_gicv3_dist.c
index b977ae5984..3ea3dd0d40 100644
--- a/hw/intc/arm_gicv3_dist.c
+++ b/hw/intc/arm_gicv3_dist.c
@@ -10,6 +10,7 @@
*/
#include "qemu/osdep.h"
+#include "qemu/log.h"
#include "trace.h"
#include "gicv3_internal.h"
diff --git a/hw/intc/arm_gicv3_redist.c b/hw/intc/arm_gicv3_redist.c
index 55c25e8935..2f60096e6e 100644
--- a/hw/intc/arm_gicv3_redist.c
+++ b/hw/intc/arm_gicv3_redist.c
@@ -10,6 +10,7 @@
*/
#include "qemu/osdep.h"
+#include "qemu/log.h"
#include "trace.h"
#include "gicv3_internal.h"