]> Git Repo - qemu.git/blobdiff - hw/i386/intel_iommu.c
Switch non-CPU callers from ld/st*_phys to address_space_ld/st*
[qemu.git] / hw / i386 / intel_iommu.c
index 7da70ff3492e89f7d3c44b690f728278a953803a..08055a8d8a83f481925f2c62bf8e707e6f9ab2d7 100644 (file)
@@ -246,7 +246,8 @@ static void vtd_generate_interrupt(IntelIOMMUState *s, hwaddr mesg_addr_reg,
     data = vtd_get_long_raw(s, mesg_data_reg);
 
     VTD_DPRINTF(FLOG, "msi: addr 0x%"PRIx64 " data 0x%"PRIx32, addr, data);
-    stl_le_phys(&address_space_memory, addr, data);
+    address_space_stl_le(&address_space_memory, addr, data,
+                         MEMTXATTRS_UNSPECIFIED, NULL);
 }
 
 /* Generate a fault event to software via MSI if conditions are met.
This page took 0.023754 seconds and 4 git commands to generate.