From: Peter Maydell Date: Tue, 23 Feb 2016 12:00:47 +0000 (+0000) Subject: all: Clean up includes X-Git-Tag: Tizen_Studio_1.3_Release_p2.3.2~30^2~6^2~8^2~163 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=974dc73d778a3b1c09a06a6a41af159537eba595;p=sdk%2Femulator%2Fqemu.git all: Clean up includes Clean up includes so that osdep.h is included first and headers which it implies are not included manually. This commit was created with scripts/clean-includes. Signed-off-by: Peter Maydell --- This just catches a couple of stragglers since I posted the last clean-includes patchset last week. --- diff --git a/hw/vfio/amd-xgbe.c b/hw/vfio/amd-xgbe.c index 53451eb22d..2c60310cf9 100644 --- a/hw/vfio/amd-xgbe.c +++ b/hw/vfio/amd-xgbe.c @@ -11,6 +11,7 @@ * */ +#include "qemu/osdep.h" #include "hw/vfio/vfio-amd-xgbe.h" static void amd_xgbe_realize(DeviceState *dev, Error **errp) diff --git a/tests/boot-sector.c b/tests/boot-sector.c index 0b48bb34bf..3ffe2987ff 100644 --- a/tests/boot-sector.c +++ b/tests/boot-sector.c @@ -10,9 +10,8 @@ * This work is licensed under the terms of the GNU GPL, version 2 or later. * See the COPYING file in the top-level directory. */ +#include "qemu/osdep.h" #include "boot-sector.h" -#include -#include #include "qemu-common.h" #include "libqtest.h" diff --git a/tests/pxe-test.c b/tests/pxe-test.c index fa430958ea..875e4c4a26 100644 --- a/tests/pxe-test.c +++ b/tests/pxe-test.c @@ -11,8 +11,7 @@ * See the COPYING file in the top-level directory. */ -#include -#include +#include "qemu/osdep.h" #include #include #include "qemu-common.h"