summaryrefslogtreecommitdiff
path: root/exec.c
diff options
context:
space:
mode:
authorMichael S. Tsirkin <mst@redhat.com>2015-03-11 07:56:34 +0100
committerMichael S. Tsirkin <mst@redhat.com>2015-03-11 18:24:29 +0100
commit4485bd269c0e1c051d21d0196be89cdba23d9520 (patch)
tree3ab16cf1ae39f16c752f936c1d365828708eb0c4 /exec.c
parent7927266183583f1fa90323890b21d2c03ed244f6 (diff)
downloadqemu-4485bd269c0e1c051d21d0196be89cdba23d9520.tar.gz
exec: don't include hw/boards for linux-user
As noted by Andreas, hw/boards.h shouldn't be used outside softmmu code. Include it conditionally, and drop the (now unnecessary) ifdef guards in hw/boards.h Reported-by: Andreas Färber <afaerber@suse.de> Cc: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Michael S. Tsirkin <mst@redhat.com> Reviewed-by: Andreas Färber <afaerber@suse.de>
Diffstat (limited to 'exec.c')
-rw-r--r--exec.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/exec.c b/exec.c
index fe64009f0c..bc37c7b485 100644
--- a/exec.c
+++ b/exec.c
@@ -26,7 +26,9 @@
#include "cpu.h"
#include "tcg.h"
#include "hw/hw.h"
+#if !defined(CONFIG_USER_ONLY)
#include "hw/boards.h"
+#endif
#include "hw/qdev.h"
#include "qemu/osdep.h"
#include "sysemu/kvm.h"