From: Paolo Bonzini Date: Fri, 4 Dec 2015 10:10:27 +0000 (+0100) Subject: explicitly include hw/qdev-core.h X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=3b3d264888a2dd63a417ea00f4e69fd59d4df8e8;p=qemu.git explicitly include hw/qdev-core.h exec/cpu-all.h includes qom/cpu.h, which includes hw/qdev-core.h. Explicit inclusion will keep things working when cpu.h will not be included indirectly almost everywhere (either directly or through qemu-common.h). Signed-off-by: Paolo Bonzini --- diff --git a/bootdevice.c b/bootdevice.c index 2e83ff05eb..bb9c08e535 100644 --- a/bootdevice.c +++ b/bootdevice.c @@ -28,6 +28,7 @@ #include "qapi/visitor.h" #include "qemu/error-report.h" #include "hw/hw.h" +#include "hw/qdev-core.h" typedef struct FWBootEntry FWBootEntry;