diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2016-01-26 18:17:00 +0000 |
---|---|---|
committer | Timothy Pearson <tpearson@raptorengineering.com> | 2019-11-29 19:29:56 -0600 |
commit | 8ecbfbaec0d46d12bf215682dc8b2dc34eec12b0 (patch) | |
tree | d0ecab7a9e96fe6a15de2982ad60b845830aae69 /target-s390x | |
parent | 3da642bdbf9803564e997e12a7ba171601268893 (diff) | |
download | hqemu-8ecbfbaec0d46d12bf215682dc8b2dc34eec12b0.zip hqemu-8ecbfbaec0d46d12bf215682dc8b2dc34eec12b0.tar.gz |
s390: 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>
Acked-by: Cornelia Huck <cornelia.huck@de.ibm.com>
Message-id: 1453832250-766-8-git-send-email-peter.maydell@linaro.org
Diffstat (limited to 'target-s390x')
-rw-r--r-- | target-s390x/arch_dump.c | 1 | ||||
-rw-r--r-- | target-s390x/cc_helper.c | 1 | ||||
-rw-r--r-- | target-s390x/cpu.c | 1 | ||||
-rw-r--r-- | target-s390x/fpu_helper.c | 1 | ||||
-rw-r--r-- | target-s390x/gdbstub.c | 2 | ||||
-rw-r--r-- | target-s390x/helper.c | 1 | ||||
-rw-r--r-- | target-s390x/int_helper.c | 1 | ||||
-rw-r--r-- | target-s390x/interrupt.c | 1 | ||||
-rw-r--r-- | target-s390x/ioinst.c | 2 | ||||
-rw-r--r-- | target-s390x/kvm.c | 2 | ||||
-rw-r--r-- | target-s390x/machine.c | 1 | ||||
-rw-r--r-- | target-s390x/mem_helper.c | 1 | ||||
-rw-r--r-- | target-s390x/misc_helper.c | 2 | ||||
-rw-r--r-- | target-s390x/mmu_helper.c | 1 | ||||
-rw-r--r-- | target-s390x/translate.c | 1 |
15 files changed, 15 insertions, 4 deletions
diff --git a/target-s390x/arch_dump.c b/target-s390x/arch_dump.c index 549a99b..4731869 100644 --- a/target-s390x/arch_dump.c +++ b/target-s390x/arch_dump.c @@ -11,6 +11,7 @@ * */ +#include "qemu/osdep.h" #include "cpu.h" #include "elf.h" #include "exec/cpu-all.h" diff --git a/target-s390x/cc_helper.c b/target-s390x/cc_helper.c index c4ee002..0d9411b 100644 --- a/target-s390x/cc_helper.c +++ b/target-s390x/cc_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 "exec/helper-proto.h" #include "qemu/host-utils.h" diff --git a/target-s390x/cpu.c b/target-s390x/cpu.c index 792310e..73a910d 100644 --- a/target-s390x/cpu.c +++ b/target-s390x/cpu.c @@ -23,6 +23,7 @@ * GNU GPL, version 2 or (at your option) any later version. */ +#include "qemu/osdep.h" #include "cpu.h" #include "qemu-common.h" #include "qemu/timer.h" diff --git a/target-s390x/fpu_helper.c b/target-s390x/fpu_helper.c index 45b7ddf..1c7f673 100644 --- a/target-s390x/fpu_helper.c +++ b/target-s390x/fpu_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 "exec/cpu_ldst.h" #include "exec/helper-proto.h" diff --git a/target-s390x/gdbstub.c b/target-s390x/gdbstub.c index a05d1cd..9fc36cb 100644 --- a/target-s390x/gdbstub.c +++ b/target-s390x/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" #include "qemu/bitops.h" diff --git a/target-s390x/helper.c b/target-s390x/helper.c index 1231e58..838bdd9 100644 --- a/target-s390x/helper.c +++ b/target-s390x/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 "exec/gdbstub.h" #include "qemu/timer.h" diff --git a/target-s390x/int_helper.c b/target-s390x/int_helper.c index a46c736..cc1071e 100644 --- a/target-s390x/int_helper.c +++ b/target-s390x/int_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 "qemu/host-utils.h" #include "exec/helper-proto.h" diff --git a/target-s390x/interrupt.c b/target-s390x/interrupt.c index 1404d0a..07d210a 100644 --- a/target-s390x/interrupt.c +++ b/target-s390x/interrupt.c @@ -7,6 +7,7 @@ * option) any later version. See the COPYING file in the top-level directory. */ +#include "qemu/osdep.h" #include "cpu.h" #include "sysemu/kvm.h" diff --git a/target-s390x/ioinst.c b/target-s390x/ioinst.c index 9a8de6d..142ff93 100644 --- a/target-s390x/ioinst.c +++ b/target-s390x/ioinst.c @@ -9,7 +9,7 @@ * directory. */ -#include <sys/types.h> +#include "qemu/osdep.h" #include "cpu.h" #include "ioinst.h" diff --git a/target-s390x/kvm.c b/target-s390x/kvm.c index b8222cc..9b21b96 100644 --- a/target-s390x/kvm.c +++ b/target-s390x/kvm.c @@ -21,7 +21,7 @@ * License along with this library; if not, see <http://www.gnu.org/licenses/>. */ -#include <sys/types.h> +#include "qemu/osdep.h" #include <sys/ioctl.h> #include <sys/mman.h> diff --git a/target-s390x/machine.c b/target-s390x/machine.c index 96ad0a9..6b26090 100644 --- a/target-s390x/machine.c +++ b/target-s390x/machine.c @@ -14,6 +14,7 @@ * or (at your option) any later version. */ +#include "qemu/osdep.h" #include "hw/hw.h" #include "cpu.h" #include "sysemu/kvm.h" diff --git a/target-s390x/mem_helper.c b/target-s390x/mem_helper.c index 90399f1..7078622 100644 --- a/target-s390x/mem_helper.c +++ b/target-s390x/mem_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 "exec/helper-proto.h" #include "exec/cpu_ldst.h" diff --git a/target-s390x/misc_helper.c b/target-s390x/misc_helper.c index dab02d3..71cbe34 100644 --- a/target-s390x/misc_helper.c +++ b/target-s390x/misc_helper.c @@ -18,11 +18,11 @@ * License along with this library; if not, see <http://www.gnu.org/licenses/>. */ +#include "qemu/osdep.h" #include "cpu.h" #include "exec/memory.h" #include "qemu/host-utils.h" #include "exec/helper-proto.h" -#include <string.h> #include "sysemu/kvm.h" #include "qemu/timer.h" #include "exec/address-spaces.h" diff --git a/target-s390x/mmu_helper.c b/target-s390x/mmu_helper.c index f4e1872..5323c53 100644 --- a/target-s390x/mmu_helper.c +++ b/target-s390x/mmu_helper.c @@ -15,6 +15,7 @@ * GNU General Public License for more details. */ +#include "qemu/osdep.h" #include "qemu/error-report.h" #include "exec/address-spaces.h" #include "cpu.h" diff --git a/target-s390x/translate.c b/target-s390x/translate.c index c79a2cb..811928b 100644 --- a/target-s390x/translate.c +++ b/target-s390x/translate.c @@ -28,6 +28,7 @@ # define LOG_DISAS(...) do { } while (0) #endif +#include "qemu/osdep.h" #include "cpu.h" #include "disas/disas.h" #include "tcg-op.h" |