mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-01 14:53:54 -06:00
Include qemu-common.h exactly where needed
No header includes qemu-common.h after this commit, as prescribed by qemu-common.h's file comment. Signed-off-by: Markus Armbruster <armbru@redhat.com> Message-Id: <20190523143508.25387-5-armbru@redhat.com> [Rebased with conflicts resolved automatically, except for include/hw/arm/xlnx-zynqmp.h hw/arm/nrf51_soc.c hw/arm/msf2-soc.c block/qcow2-refcount.c block/qcow2-cluster.c block/qcow2-cache.c target/arm/cpu.h target/lm32/cpu.h target/m68k/cpu.h target/mips/cpu.h target/moxie/cpu.h target/nios2/cpu.h target/openrisc/cpu.h target/riscv/cpu.h target/tilegx/cpu.h target/tricore/cpu.h target/unicore32/cpu.h target/xtensa/cpu.h; bsd-user/main.c and net/tap-bsd.c fixed up]
This commit is contained in:
parent
0b8fa32f55
commit
a8d2532645
485 changed files with 103 additions and 397 deletions
|
@ -9,7 +9,6 @@
|
|||
#ifndef HW_ACPI_TCO_H
|
||||
#define HW_ACPI_TCO_H
|
||||
|
||||
#include "qemu-common.h"
|
||||
|
||||
/* As per ICH9 spec, the internal timer has an error of ~0.6s on every tick */
|
||||
#define TCO_TICK_NSEC 600000000LL
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
#ifndef ALLWINNER_H_
|
||||
|
||||
#include "qemu-common.h"
|
||||
#include "qemu/error-report.h"
|
||||
#include "hw/char/serial.h"
|
||||
#include "hw/arm/boot.h"
|
||||
|
|
|
@ -11,7 +11,6 @@
|
|||
#ifndef BCM2835_PERIPHERALS_H
|
||||
#define BCM2835_PERIPHERALS_H
|
||||
|
||||
#include "qemu-common.h"
|
||||
#include "hw/sysbus.h"
|
||||
#include "hw/char/pl011.h"
|
||||
#include "hw/char/bcm2835_aux.h"
|
||||
|
|
|
@ -25,7 +25,6 @@
|
|||
#ifndef EXYNOS4210_H
|
||||
#define EXYNOS4210_H
|
||||
|
||||
#include "qemu-common.h"
|
||||
#include "exec/memory.h"
|
||||
#include "target/arm/cpu-qom.h"
|
||||
|
||||
|
|
|
@ -30,7 +30,6 @@
|
|||
#ifndef QEMU_ARM_VIRT_H
|
||||
#define QEMU_ARM_VIRT_H
|
||||
|
||||
#include "qemu-common.h"
|
||||
#include "exec/hwaddr.h"
|
||||
#include "qemu/notify.h"
|
||||
#include "hw/boards.h"
|
||||
|
|
|
@ -17,7 +17,6 @@
|
|||
|
||||
#ifndef XLNX_ZYNQMP_H
|
||||
|
||||
#include "qemu-common.h"
|
||||
#include "hw/arm/boot.h"
|
||||
#include "hw/intc/arm_gic.h"
|
||||
#include "hw/net/cadence_gem.h"
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
#ifndef HW_FDC_H
|
||||
#define HW_FDC_H
|
||||
|
||||
#include "qemu-common.h"
|
||||
#include "qapi/qapi-types-block.h"
|
||||
|
||||
/* fdc.c */
|
||||
|
|
|
@ -6,7 +6,6 @@
|
|||
#ifndef BCM2835_DMA_H
|
||||
#define BCM2835_DMA_H
|
||||
|
||||
#include "qemu-common.h"
|
||||
#include "hw/sysbus.h"
|
||||
|
||||
typedef struct {
|
||||
|
|
|
@ -18,7 +18,6 @@
|
|||
#ifndef FW_PATH_PROVIDER_H
|
||||
#define FW_PATH_PROVIDER_H
|
||||
|
||||
#include "qemu-common.h"
|
||||
#include "qom/object.h"
|
||||
|
||||
#define TYPE_FW_PATH_PROVIDER "fw-path-provider"
|
||||
|
|
|
@ -27,7 +27,6 @@
|
|||
#ifndef PPC4XX_I2C_H
|
||||
#define PPC4XX_I2C_H
|
||||
|
||||
#include "qemu-common.h"
|
||||
#include "hw/sysbus.h"
|
||||
#include "hw/i2c/i2c.h"
|
||||
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
#ifndef APIC_H
|
||||
#define APIC_H
|
||||
|
||||
#include "qemu-common.h"
|
||||
|
||||
/* apic.c */
|
||||
void apic_deliver_irq(uint8_t dest, uint8_t dest_mode, uint8_t delivery_mode,
|
||||
|
|
|
@ -26,7 +26,6 @@
|
|||
#define HW_IPMI_H
|
||||
|
||||
#include "exec/memory.h"
|
||||
#include "qemu-common.h"
|
||||
#include "hw/qdev.h"
|
||||
|
||||
#define MAX_IPMI_MSG_SIZE 300
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
#ifndef APM_H
|
||||
#define APM_H
|
||||
|
||||
#include "qemu-common.h"
|
||||
#include "hw/hw.h"
|
||||
#include "exec/memory.h"
|
||||
|
||||
|
|
|
@ -10,7 +10,6 @@
|
|||
#ifndef HW_ISA_SUPERIO_H
|
||||
#define HW_ISA_SUPERIO_H
|
||||
|
||||
#include "qemu-common.h"
|
||||
#include "sysemu/sysemu.h"
|
||||
#include "hw/isa/isa.h"
|
||||
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
#ifndef QEMU_HW_LM32_PIC_H
|
||||
#define QEMU_HW_LM32_PIC_H
|
||||
|
||||
#include "qemu-common.h"
|
||||
|
||||
uint32_t lm32_pic_get_ip(DeviceState *d);
|
||||
uint32_t lm32_pic_get_im(DeviceState *d);
|
||||
|
|
|
@ -22,7 +22,6 @@
|
|||
#ifndef NMI_H
|
||||
#define NMI_H
|
||||
|
||||
#include "qemu-common.h"
|
||||
#include "qom/object.h"
|
||||
|
||||
#define TYPE_NMI "nmi"
|
||||
|
|
|
@ -50,7 +50,6 @@
|
|||
* 0xf0000 - 0xfffff System BIOS Area Memory Segments
|
||||
*/
|
||||
|
||||
#include "qemu-common.h"
|
||||
#include "exec/memory.h"
|
||||
|
||||
#define SMRAM_C_BASE 0xa0000
|
||||
|
|
|
@ -21,7 +21,6 @@
|
|||
#ifndef QEMU_MSI_H
|
||||
#define QEMU_MSI_H
|
||||
|
||||
#include "qemu-common.h"
|
||||
#include "hw/pci/pci.h"
|
||||
|
||||
struct MSIMessage {
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
#ifndef QEMU_MSIX_H
|
||||
#define QEMU_MSIX_H
|
||||
|
||||
#include "qemu-common.h"
|
||||
#include "hw/pci/pci.h"
|
||||
|
||||
#define MSIX_CAP_LENGTH 12
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
#ifndef SHPC_H
|
||||
#define SHPC_H
|
||||
|
||||
#include "qemu-common.h"
|
||||
#include "exec/memory.h"
|
||||
#include "hw/hotplug.h"
|
||||
#include "hw/pci/pci.h"
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
#ifndef PCI_SLOTID_CAP_H
|
||||
#define PCI_SLOTID_CAP_H
|
||||
|
||||
#include "qemu-common.h"
|
||||
|
||||
int slotid_cap_init(PCIDevice *dev, int nslots,
|
||||
uint8_t chassis,
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
#ifndef OPENPIC_H
|
||||
#define OPENPIC_H
|
||||
|
||||
#include "qemu-common.h"
|
||||
#include "hw/sysbus.h"
|
||||
#include "hw/qdev-core.h"
|
||||
#include "qom/cpu.h"
|
||||
|
|
|
@ -8,7 +8,6 @@
|
|||
#ifndef PTIMER_H
|
||||
#define PTIMER_H
|
||||
|
||||
#include "qemu-common.h"
|
||||
#include "qemu/timer.h"
|
||||
#include "migration/vmstate.h"
|
||||
|
||||
|
|
|
@ -25,7 +25,6 @@
|
|||
#ifndef SDHCI_H
|
||||
#define SDHCI_H
|
||||
|
||||
#include "qemu-common.h"
|
||||
#include "hw/pci/pci.h"
|
||||
#include "hw/sysbus.h"
|
||||
#include "hw/sd/sd.h"
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
#ifndef SH_INTC_H
|
||||
#define SH_INTC_H
|
||||
|
||||
#include "qemu-common.h"
|
||||
#include "hw/irq.h"
|
||||
|
||||
typedef unsigned char intc_enum;
|
||||
|
|
|
@ -25,7 +25,6 @@
|
|||
#ifndef SUN4M_IOMMU_H
|
||||
#define SUN4M_IOMMU_H
|
||||
|
||||
#include "qemu-common.h"
|
||||
#include "hw/sysbus.h"
|
||||
|
||||
#define IOMMU_NREGS (4 * 4096 / 4)
|
||||
|
|
|
@ -27,7 +27,6 @@
|
|||
#ifndef SUN4U_IOMMU_H
|
||||
#define SUN4U_IOMMU_H
|
||||
|
||||
#include "qemu-common.h"
|
||||
#include "hw/sysbus.h"
|
||||
|
||||
#define IOMMU_NREGS 3
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
#ifndef STREAM_H
|
||||
#define STREAM_H
|
||||
|
||||
#include "qemu-common.h"
|
||||
#include "qom/object.h"
|
||||
|
||||
/* stream slave. Used until qdev provides a generic way. */
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
#ifndef HW_M48T59_H
|
||||
#define HW_M48T59_H
|
||||
|
||||
#include "qemu-common.h"
|
||||
#include "qom/object.h"
|
||||
|
||||
#define TYPE_NVRAM "nvram"
|
||||
|
|
|
@ -21,7 +21,6 @@
|
|||
#ifndef HW_VFIO_VFIO_COMMON_H
|
||||
#define HW_VFIO_VFIO_COMMON_H
|
||||
|
||||
#include "qemu-common.h"
|
||||
#include "exec/memory.h"
|
||||
#include "qemu/queue.h"
|
||||
#include "qemu/notify.h"
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
#ifndef VHOST_SCSI_COMMON_H
|
||||
#define VHOST_SCSI_COMMON_H
|
||||
|
||||
#include "qemu-common.h"
|
||||
#include "hw/qdev.h"
|
||||
#include "hw/virtio/virtio-scsi.h"
|
||||
#include "hw/virtio/vhost.h"
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
#ifndef VHOST_SCSI_H
|
||||
#define VHOST_SCSI_H
|
||||
|
||||
#include "qemu-common.h"
|
||||
#include "hw/qdev.h"
|
||||
#include "hw/virtio/virtio-scsi.h"
|
||||
#include "hw/virtio/vhost.h"
|
||||
|
|
|
@ -16,7 +16,6 @@
|
|||
#define VHOST_USER_BLK_H
|
||||
|
||||
#include "standard-headers/linux/virtio_blk.h"
|
||||
#include "qemu-common.h"
|
||||
#include "hw/qdev.h"
|
||||
#include "hw/block/block.h"
|
||||
#include "chardev/char-fe.h"
|
||||
|
|
|
@ -17,7 +17,6 @@
|
|||
#ifndef VHOST_USER_SCSI_H
|
||||
#define VHOST_USER_SCSI_H
|
||||
|
||||
#include "qemu-common.h"
|
||||
#include "hw/qdev.h"
|
||||
#include "hw/virtio/virtio-scsi.h"
|
||||
#include "hw/virtio/vhost.h"
|
||||
|
|
|
@ -8,7 +8,6 @@
|
|||
* /usr/include/xen, so it can be included unconditionally.
|
||||
*/
|
||||
|
||||
#include "qemu-common.h"
|
||||
#include "exec/cpu-common.h"
|
||||
#include "hw/irq.h"
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue