]> Git Repo - qemu.git/blobdiff - hw/pci/msix.c
Switch non-CPU callers from ld/st*_phys to address_space_ld/st*
[qemu.git] / hw / pci / msix.c
index 24de2605fbac4a2dae61e1ada7c531ff677eeb88..031eaabca9de1609e1d76204869dc03016f7e6ba 100644 (file)
@@ -435,7 +435,8 @@ void msix_notify(PCIDevice *dev, unsigned vector)
 
     msg = msix_get_message(dev, vector);
 
-    stl_le_phys(&dev->bus_master_as, msg.address, msg.data);
+    address_space_stl_le(&dev->bus_master_as, msg.address, msg.data,
+                         MEMTXATTRS_UNSPECIFIED, NULL);
 }
 
 void msix_reset(PCIDevice *dev)
This page took 0.024226 seconds and 4 git commands to generate.