From: Peter Maydell Date: Tue, 26 Jan 2016 18:05:31 +0000 (+0000) Subject: microblaze: Clean up includes X-Git-Tag: v2.6.0-rc0~199 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8fd9dece6599eb3fbd2cdd3e7fbdd4e575e33911;p=thirdparty%2Fqemu.git microblaze: 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 Acked-by: Edgar E. Iglesias Message-id: 1453831531-667-3-git-send-email-peter.maydell@linaro.org --- diff --git a/hw/microblaze/boot.c b/hw/microblaze/boot.c index d7eaa1f022b..26cc3786f41 100644 --- a/hw/microblaze/boot.c +++ b/hw/microblaze/boot.c @@ -24,6 +24,7 @@ * THE SOFTWARE. */ +#include "qemu/osdep.h" #include "qemu/option.h" #include "qemu/config-file.h" #include "qemu/error-report.h" diff --git a/hw/microblaze/petalogix_ml605_mmu.c b/hw/microblaze/petalogix_ml605_mmu.c index 3f9fa5f2f4c..85e974b72a3 100644 --- a/hw/microblaze/petalogix_ml605_mmu.c +++ b/hw/microblaze/petalogix_ml605_mmu.c @@ -25,6 +25,7 @@ * THE SOFTWARE. */ +#include "qemu/osdep.h" #include "hw/sysbus.h" #include "hw/hw.h" #include "net/net.h" diff --git a/hw/microblaze/petalogix_s3adsp1800_mmu.c b/hw/microblaze/petalogix_s3adsp1800_mmu.c index 1c84b75288e..606ba1f01a5 100644 --- a/hw/microblaze/petalogix_s3adsp1800_mmu.c +++ b/hw/microblaze/petalogix_s3adsp1800_mmu.c @@ -23,6 +23,7 @@ * THE SOFTWARE. */ +#include "qemu/osdep.h" #include "hw/sysbus.h" #include "hw/hw.h" #include "net/net.h" diff --git a/target-microblaze/cpu.c b/target-microblaze/cpu.c index 52959e13b42..7a42897a004 100644 --- a/target-microblaze/cpu.c +++ b/target-microblaze/cpu.c @@ -21,6 +21,7 @@ * */ +#include "qemu/osdep.h" #include "cpu.h" #include "qemu-common.h" #include "hw/qdev-properties.h" diff --git a/target-microblaze/gdbstub.c b/target-microblaze/gdbstub.c index a70e2ee3cbd..89d38980bf1 100644 --- a/target-microblaze/gdbstub.c +++ b/target-microblaze/gdbstub.c @@ -17,7 +17,7 @@ * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, see . */ -#include "config.h" +#include "qemu/osdep.h" #include "qemu-common.h" #include "exec/gdbstub.h" diff --git a/target-microblaze/helper.c b/target-microblaze/helper.c index a482e474bc2..3b0fae80723 100644 --- a/target-microblaze/helper.c +++ b/target-microblaze/helper.c @@ -18,6 +18,7 @@ * License along with this library; if not, see . */ +#include "qemu/osdep.h" #include "cpu.h" #include "qemu/host-utils.h" diff --git a/target-microblaze/mmu.c b/target-microblaze/mmu.c index ee95a0457c6..4ac30403573 100644 --- a/target-microblaze/mmu.c +++ b/target-microblaze/mmu.c @@ -18,6 +18,7 @@ * License along with this library; if not, see . */ +#include "qemu/osdep.h" #include "cpu.h" #define D(x) diff --git a/target-microblaze/op_helper.c b/target-microblaze/op_helper.c index 56374621c28..97333881f03 100644 --- a/target-microblaze/op_helper.c +++ b/target-microblaze/op_helper.c @@ -18,6 +18,7 @@ * License along with this library; if not, see . */ +#include "qemu/osdep.h" #include "cpu.h" #include "exec/helper-proto.h" #include "qemu/host-utils.h" diff --git a/target-microblaze/translate.c b/target-microblaze/translate.c index 9e520114a42..2e1293d953e 100644 --- a/target-microblaze/translate.c +++ b/target-microblaze/translate.c @@ -18,6 +18,7 @@ * License along with this library; if not, see . */ +#include "qemu/osdep.h" #include "cpu.h" #include "disas/disas.h" #include "tcg-op.h"