diff options
Diffstat (limited to 'hw/sun4m.h')
-rw-r--r-- | hw/sun4m.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/hw/sun4m.h b/hw/sun4m.h index ce97ee5a79..694ef8b73f 100644 --- a/hw/sun4m.h +++ b/hw/sun4m.h @@ -6,17 +6,17 @@ /* Devices used by sparc32 system. */ /* iommu.c */ -void sparc_iommu_memory_rw(void *opaque, target_phys_addr_t addr, +void sparc_iommu_memory_rw(void *opaque, a_target_phys_addr addr, uint8_t *buf, int len, int is_write); static inline void sparc_iommu_memory_read(void *opaque, - target_phys_addr_t addr, + a_target_phys_addr addr, uint8_t *buf, int len) { sparc_iommu_memory_rw(opaque, addr, buf, len, 0); } static inline void sparc_iommu_memory_write(void *opaque, - target_phys_addr_t addr, + a_target_phys_addr addr, uint8_t *buf, int len) { sparc_iommu_memory_rw(opaque, addr, buf, len, 1); |