]> Git Repo - qemu.git/blobdiff - hw/pci/msi.c
Switch non-CPU callers from ld/st*_phys to address_space_ld/st*
[qemu.git] / hw / pci / msi.c
index 52d23130d9717dd316747bcbb1c2eaef223fe40d..916e1a1e5bf719bc2e8914a07b9ce290163aa7d6 100644 (file)
@@ -291,7 +291,8 @@ void msi_notify(PCIDevice *dev, unsigned int vector)
                    "notify vector 0x%x"
                    " address: 0x%"PRIx64" data: 0x%"PRIx32"\n",
                    vector, msg.address, msg.data);
-    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);
 }
 
 /* Normally called by pci_default_write_config(). */
This page took 0.023645 seconds and 4 git commands to generate.