]> git.proxmox.com Git - mirror_qemu.git/blobdiff - hw/msi.h
RTC: Remove the logic to update time format when DM bit changed
[mirror_qemu.git] / hw / msi.h
index 3040bb0b43f5c461daa27c869cdb94915efa3e3b..6ec1f99f809ff040048db71d733b1cdb33e5d7a7 100644 (file)
--- a/hw/msi.h
+++ b/hw/msi.h
 #include "qemu-common.h"
 #include "pci.h"
 
+struct MSIMessage {
+    uint64_t address;
+    uint32_t data;
+};
+
 extern bool msi_supported;
 
+void msi_set_message(PCIDevice *dev, MSIMessage msg);
 bool msi_enabled(const PCIDevice *dev);
 int msi_init(struct PCIDevice *dev, uint8_t offset,
              unsigned int nr_vectors, bool msi64bit, bool msi_per_vector_mask);