diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2016-01-26 18:17:24 +0000 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2016-01-29 15:07:24 +0000 |
commit | 23b0d7dfe5d2d5a9906be6d257ae75bbe62c5acc (patch) | |
tree | cee0a5ff6930ef28c238f11ce351b8f57e7a14eb /target-cris | |
parent | d8416665774bb6c057cbb3dd67d802e67e7a03ef (diff) |
cris: 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 <peter.maydell@linaro.org>
Message-id: 1453832250-766-32-git-send-email-peter.maydell@linaro.org
Diffstat (limited to 'target-cris')
-rw-r--r-- | target-cris/cpu.c | 1 | ||||
-rw-r--r-- | target-cris/gdbstub.c | 2 | ||||
-rw-r--r-- | target-cris/helper.c | 1 | ||||
-rw-r--r-- | target-cris/machine.c | 1 | ||||
-rw-r--r-- | target-cris/op_helper.c | 1 | ||||
-rw-r--r-- | target-cris/translate.c | 1 | ||||
-rw-r--r-- | target-cris/translate_v10.c | 1 |
7 files changed, 7 insertions, 1 deletions
diff --git a/target-cris/cpu.c b/target-cris/cpu.c index 8eaf5a5a31..b2c8624dbf 100644 --- a/target-cris/cpu.c +++ b/target-cris/cpu.c @@ -21,6 +21,7 @@ * <http://www.gnu.org/licenses/lgpl-2.1.html> */ +#include "qemu/osdep.h" #include "cpu.h" #include "qemu-common.h" #include "mmu.h" diff --git a/target-cris/gdbstub.c b/target-cris/gdbstub.c index 5db3683ab6..1bbf17b04a 100644 --- a/target-cris/gdbstub.c +++ b/target-cris/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 <http://www.gnu.org/licenses/>. */ -#include "config.h" +#include "qemu/osdep.h" #include "qemu-common.h" #include "exec/gdbstub.h" diff --git a/target-cris/helper.c b/target-cris/helper.c index df6c9fdcb5..1eb9fd9184 100644 --- a/target-cris/helper.c +++ b/target-cris/helper.c @@ -18,6 +18,7 @@ * License along with this library; if not, see <http://www.gnu.org/licenses/>. */ +#include "qemu/osdep.h" #include "cpu.h" #include "mmu.h" #include "qemu/host-utils.h" diff --git a/target-cris/machine.c b/target-cris/machine.c index 983b67c47f..9cc2820e85 100644 --- a/target-cris/machine.c +++ b/target-cris/machine.c @@ -18,6 +18,7 @@ * License along with this library; if not, see <http://www.gnu.org/licenses/>. */ +#include "qemu/osdep.h" #include "hw/hw.h" static const VMStateDescription vmstate_tlbset = { diff --git a/target-cris/op_helper.c b/target-cris/op_helper.c index 22966771e9..320f2b80d2 100644 --- a/target-cris/op_helper.c +++ b/target-cris/op_helper.c @@ -18,6 +18,7 @@ * License along with this library; if not, see <http://www.gnu.org/licenses/>. */ +#include "qemu/osdep.h" #include "cpu.h" #include "mmu.h" #include "exec/helper-proto.h" diff --git a/target-cris/translate.c b/target-cris/translate.c index 24299314d0..295005f141 100644 --- a/target-cris/translate.c +++ b/target-cris/translate.c @@ -23,6 +23,7 @@ * The condition code translation is in need of attention. */ +#include "qemu/osdep.h" #include "cpu.h" #include "disas/disas.h" #include "tcg-op.h" diff --git a/target-cris/translate_v10.c b/target-cris/translate_v10.c index df20bdc5f1..1335517883 100644 --- a/target-cris/translate_v10.c +++ b/target-cris/translate_v10.c @@ -18,6 +18,7 @@ * License along with this library; if not, see <http://www.gnu.org/licenses/>. */ +#include "qemu/osdep.h" #include "crisv10-decode.h" static const char *regnames_v10[] = |