From 99a0949b720a0936da2052cb9a46db04ffc6db29 Mon Sep 17 00:00:00 2001 From: malc Date: Thu, 1 Oct 2009 22:20:47 +0400 Subject: Get rid of _t suffix Some not so obvious bits, slirp and Xen were left alone for the time being. Signed-off-by: malc --- dma.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'dma.h') diff --git a/dma.h b/dma.h index f3bb27515..883d471b9 100644 --- a/dma.h +++ b/dma.h @@ -16,20 +16,20 @@ #include "block.h" typedef struct { - target_phys_addr_t base; - target_phys_addr_t len; + a_target_phys_addr base; + a_target_phys_addr len; } ScatterGatherEntry; typedef struct { ScatterGatherEntry *sg; int nsg; int nalloc; - target_phys_addr_t size; + a_target_phys_addr size; } QEMUSGList; void qemu_sglist_init(QEMUSGList *qsg, int alloc_hint); -void qemu_sglist_add(QEMUSGList *qsg, target_phys_addr_t base, - target_phys_addr_t len); +void qemu_sglist_add(QEMUSGList *qsg, a_target_phys_addr base, + a_target_phys_addr len); void qemu_sglist_destroy(QEMUSGList *qsg); BlockDriverAIOCB *dma_bdrv_read(BlockDriverState *bs, -- cgit v1.2.3