Browse Source

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
pull/36/head
Peter Maydell 10 years ago
parent
commit
9615495afc
  1. 1
      hw/char/sclpconsole-lm.c
  2. 1
      hw/char/sclpconsole.c
  3. 1
      hw/s390x/css.c
  4. 1
      hw/s390x/event-facility.c
  5. 1
      hw/s390x/ipl.c
  6. 1
      hw/s390x/s390-pci-bus.c
  7. 1
      hw/s390x/s390-pci-inst.c
  8. 1
      hw/s390x/s390-skeys-kvm.c
  9. 1
      hw/s390x/s390-skeys.c
  10. 1
      hw/s390x/s390-virtio-ccw.c
  11. 1
      hw/s390x/s390-virtio-hcall.c
  12. 1
      hw/s390x/s390-virtio.c
  13. 1
      hw/s390x/sclp.c
  14. 1
      hw/s390x/sclpcpu.c
  15. 1
      hw/s390x/sclpquiesce.c
  16. 1
      hw/s390x/virtio-ccw.c
  17. 1
      hw/watchdog/wdt_diag288.c
  18. 1
      target-s390x/arch_dump.c
  19. 1
      target-s390x/cc_helper.c
  20. 1
      target-s390x/cpu.c
  21. 1
      target-s390x/fpu_helper.c
  22. 2
      target-s390x/gdbstub.c
  23. 1
      target-s390x/helper.c
  24. 1
      target-s390x/int_helper.c
  25. 1
      target-s390x/interrupt.c
  26. 2
      target-s390x/ioinst.c
  27. 2
      target-s390x/kvm.c
  28. 1
      target-s390x/machine.c
  29. 1
      target-s390x/mem_helper.c
  30. 2
      target-s390x/misc_helper.c
  31. 1
      target-s390x/mmu_helper.c
  32. 1
      target-s390x/translate.c

1
hw/char/sclpconsole-lm.c

@ -13,6 +13,7 @@
*
*/
#include "qemu/osdep.h"
#include "hw/qdev.h"
#include "qemu/thread.h"
#include "qemu/error-report.h"

1
hw/char/sclpconsole.c

@ -12,6 +12,7 @@
*
*/
#include "qemu/osdep.h"
#include <hw/qdev.h>
#include "qemu/thread.h"
#include "qemu/error-report.h"

1
hw/s390x/css.c

@ -9,6 +9,7 @@
* directory.
*/
#include "qemu/osdep.h"
#include <hw/qdev.h>
#include "qemu/bitops.h"
#include "exec/address-spaces.h"

1
hw/s390x/event-facility.c

@ -15,6 +15,7 @@
*
*/
#include "qemu/osdep.h"
#include "sysemu/sysemu.h"
#include "hw/s390x/sclp.h"

1
hw/s390x/ipl.c

@ -11,6 +11,7 @@
*
*/
#include "qemu/osdep.h"
#include "sysemu/sysemu.h"
#include "cpu.h"
#include "elf.h"

1
hw/s390x/s390-pci-bus.c

@ -11,6 +11,7 @@
* directory.
*/
#include "qemu/osdep.h"
#include "s390-pci-bus.h"
#include <hw/pci/pci_bus.h>
#include <hw/pci/msi.h>

1
hw/s390x/s390-pci-inst.c

@ -11,6 +11,7 @@
* directory.
*/
#include "qemu/osdep.h"
#include "s390-pci-inst.h"
#include "s390-pci-bus.h"
#include <exec/memory-internal.h>

1
hw/s390x/s390-skeys-kvm.c

@ -9,6 +9,7 @@
* directory.
*/
#include "qemu/osdep.h"
#include "hw/s390x/storage-keys.h"
#include "sysemu/kvm.h"
#include "qemu/error-report.h"

1
hw/s390x/s390-skeys.c

@ -9,6 +9,7 @@
* directory.
*/
#include "qemu/osdep.h"
#include "hw/boards.h"
#include "qmp-commands.h"
#include "migration/qemu-file.h"

1
hw/s390x/s390-virtio-ccw.c

@ -9,6 +9,7 @@
* directory.
*/
#include "qemu/osdep.h"
#include "hw/boards.h"
#include "exec/address-spaces.h"
#include "s390-virtio.h"

1
hw/s390x/s390-virtio-hcall.c

@ -9,6 +9,7 @@
* directory.
*/
#include "qemu/osdep.h"
#include "cpu.h"
#include "hw/s390x/s390-virtio.h"

1
hw/s390x/s390-virtio.c

@ -21,6 +21,7 @@
* License along with this library; if not, see <http://www.gnu.org/licenses/>.
*/
#include "qemu/osdep.h"
#include "hw/hw.h"
#include "qapi/qmp/qerror.h"
#include "qemu/error-report.h"

1
hw/s390x/sclp.c

@ -12,6 +12,7 @@
*
*/
#include "qemu/osdep.h"
#include "cpu.h"
#include "sysemu/kvm.h"
#include "exec/memory.h"

1
hw/s390x/sclpcpu.c

@ -12,6 +12,7 @@
* option) any later version. See the COPYING file in the top-level directory.
*
*/
#include "qemu/osdep.h"
#include "sysemu/sysemu.h"
#include "hw/s390x/sclp.h"
#include "hw/s390x/event-facility.h"

1
hw/s390x/sclpquiesce.c

@ -11,6 +11,7 @@
* option) any later version. See the COPYING file in the top-level directory.
*
*/
#include "qemu/osdep.h"
#include <hw/qdev.h>
#include "sysemu/sysemu.h"
#include "hw/s390x/sclp.h"

1
hw/s390x/virtio-ccw.c

@ -10,6 +10,7 @@
* directory.
*/
#include "qemu/osdep.h"
#include "hw/hw.h"
#include "sysemu/block-backend.h"
#include "sysemu/blockdev.h"

1
hw/watchdog/wdt_diag288.c

@ -11,6 +11,7 @@
*
*/
#include "qemu/osdep.h"
#include "sysemu/watchdog.h"
#include "hw/sysbus.h"
#include "qemu/timer.h"

1
target-s390x/arch_dump.c

@ -11,6 +11,7 @@
*
*/
#include "qemu/osdep.h"
#include "cpu.h"
#include "elf.h"
#include "exec/cpu-all.h"

1
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"

1
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"

1
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"

2
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"

1
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"

1
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"

1
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"

2
target-s390x/ioinst.c

@ -9,7 +9,7 @@
* directory.
*/
#include <sys/types.h>
#include "qemu/osdep.h"
#include "cpu.h"
#include "ioinst.h"

2
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>

1
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"

1
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"

2
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"

1
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"

1
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"

Loading…
Cancel
Save