mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-09-20 16:28:10 +00:00
hv: Rename tables member of vPCI msix struct pci_msix
Rename MSI-X struct, pci_msix, member from tables to table_entries Tracked-On: #3265 Signed-off-by: Sainath Grandhi <sainath.grandhi@intel.com> Acked-by: Eddie Dong <eddie.dong@intel.com>
This commit is contained in:
committed by
ACRN System Integration
parent
22f24c229b
commit
f7f2a6eef9
@@ -79,9 +79,9 @@ void vdev_pt_remap_msix_table_bar(struct pci_vdev *vdev)
|
||||
|
||||
/* Mask all table entries */
|
||||
for (i = 0U; i < msix->table_count; i++) {
|
||||
msix->tables[i].vector_control = PCIM_MSIX_VCTRL_MASK;
|
||||
msix->tables[i].addr = 0U;
|
||||
msix->tables[i].data = 0U;
|
||||
msix->table_entries[i].vector_control = PCIM_MSIX_VCTRL_MASK;
|
||||
msix->table_entries[i].addr = 0U;
|
||||
msix->table_entries[i].data = 0U;
|
||||
}
|
||||
|
||||
bar = &pdev->bar[msix->table_bar];
|
||||
|
Reference in New Issue
Block a user