(&mut self, offset: u64, data: &[u8])
| 207 | } |
| 208 | |
| 209 | fn update_msix(&mut self, offset: u64, data: &[u8]) -> Option<InterruptUpdateAction> { |
| 210 | if let Some(msix) = &mut self.msix { |
| 211 | let action = msix.update(offset, data); |
| 212 | return action; |
| 213 | } |
| 214 | |
| 215 | None |
| 216 | } |
| 217 | |
| 218 | fn accessed(&self, offset: u64) -> Option<(PciCapabilityId, u64)> { |
| 219 | if let Some(msi) = &self.msi |
no test coverage detected