From: Paolo Bonzini Date: Fri, 4 Dec 2015 10:10:27 +0000 (+0100) Subject: explicitly include hw/qdev-core.h X-Git-Tag: TizenStudio_2.0_p4.0~6^2~12^2~6^2~263^2~21 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3b3d264888a2dd63a417ea00f4e69fd59d4df8e8;p=sdk%2Femulator%2Fqemu.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 2e83ff0..bb9c08e 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;