aboutsummaryrefslogtreecommitdiff
path: root/hw/iommu.c
diff options
context:
space:
mode:
Diffstat (limited to 'hw/iommu.c')
-rw-r--r--hw/iommu.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/iommu.c b/hw/iommu.c
index 0879df95f..fe6911e5e 100644
--- a/hw/iommu.c
+++ b/hw/iommu.c
@@ -301,9 +301,9 @@ void sparc_iommu_memory_rw(void *opaque, target_phys_addr_t addr,
iommu_bad_addr(opaque, page, is_write);
return;
}
- cpu_physical_memory_write(phys_addr, buf, len);
+ cpu_physical_memory_write(phys_addr, buf, l);
} else {
- cpu_physical_memory_read(phys_addr, buf, len);
+ cpu_physical_memory_read(phys_addr, buf, l);
}
len -= l;
buf += l;