]> git.proxmox.com Git - qemu.git/commitdiff
move QEMUSGList typedef
authorGerd Hoffmann <kraxel@redhat.com>
Tue, 12 Jul 2011 11:36:23 +0000 (13:36 +0200)
committerGerd Hoffmann <kraxel@redhat.com>
Thu, 4 Aug 2011 13:51:22 +0000 (15:51 +0200)
Move the QEMUSGList typedef to qemu-common so it can easily be used.
The actual struct definition stays in dma.h.

Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
dma.h
qemu-common.h

diff --git a/dma.h b/dma.h
index 3d8324bb54aa9c5cfc4d54456a10859c998ef64f..a6db5bacbb703bd081539625b3628d2afaa64510 100644 (file)
--- a/dma.h
+++ b/dma.h
@@ -20,12 +20,12 @@ typedef struct {
     target_phys_addr_t len;
 } ScatterGatherEntry;
 
-typedef struct {
+struct QEMUSGList {
     ScatterGatherEntry *sg;
     int nsg;
     int nalloc;
     target_phys_addr_t size;
-} QEMUSGList;
+};
 
 void qemu_sglist_init(QEMUSGList *qsg, int alloc_hint);
 void qemu_sglist_add(QEMUSGList *qsg, target_phys_addr_t base,
index 1e3c66511eeb464ef1d0b94fb562fb16674f5bb3..c7064d362032e64c909a9732b8d5d607d609f416 100644 (file)
@@ -270,6 +270,7 @@ typedef struct I2SCodec I2SCodec;
 typedef struct SSIBus SSIBus;
 typedef struct EventNotifier EventNotifier;
 typedef struct VirtIODevice VirtIODevice;
+typedef struct QEMUSGList QEMUSGList;
 
 typedef uint64_t pcibus_t;