]> git.proxmox.com Git - mirror_qemu.git/blobdiff - hw/sun4m.h
Get rid of _t suffix
[mirror_qemu.git] / hw / sun4m.h
index ce97ee5a79ad4b5c71a795a88683d78bdbcf0d76..694ef8b73fcf47696c5e3771ae6249de06196659 100644 (file)
@@ -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);