1 #ifndef LKVM_MSI_H 2 #define LKVM_MSI_H 3 4 struct msi_msg { 5 u32 address_lo; /* low 32 bits of msi message address */ 6 u32 address_hi; /* high 32 bits of msi message address */ 7 u32 data; /* 16 bits of msi message data */ 8 }; 9 10 #endif /* LKVM_MSI_H */ 11