35 lines
938 B
Diff
35 lines
938 B
Diff
make it possible to use type without header include
|
|
|
|
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
|
|
---
|
|
hw/virtio.h | 1 -
|
|
qemu-common.h | 1 +
|
|
2 files changed, 1 insertions(+), 1 deletions(-)
|
|
|
|
diff --git a/hw/virtio.h b/hw/virtio.h
|
|
index 39d0763..a5bd0ba 100644
|
|
--- a/hw/virtio.h
|
|
+++ b/hw/virtio.h
|
|
@@ -68,7 +68,6 @@ static inline target_phys_addr_t vring_align(target_phys_addr_t addr,
|
|
}
|
|
|
|
typedef struct VirtQueue VirtQueue;
|
|
-typedef struct VirtIODevice VirtIODevice;
|
|
|
|
#define VIRTQUEUE_MAX_SIZE 1024
|
|
|
|
diff --git a/qemu-common.h b/qemu-common.h
|
|
index cdead98..1a54f9e 100644
|
|
--- a/qemu-common.h
|
|
+++ b/qemu-common.h
|
|
@@ -218,6 +218,7 @@ typedef struct I2SCodec I2SCodec;
|
|
typedef struct DeviceState DeviceState;
|
|
typedef struct SSIBus SSIBus;
|
|
typedef struct EventNotifier EventNotifier;
|
|
+typedef struct VirtIODevice VirtIODevice;
|
|
|
|
/* CPU save/load. */
|
|
void cpu_save(QEMUFile *f, void *opaque);
|
|
--
|
|
1.6.6.144.g5c3af
|