Changeset 36562 in vbox for trunk/src/VBox/Devices/Bus
- Timestamp:
- Apr 5, 2011 1:56:34 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 70997
- Location:
- trunk/src/VBox/Devices/Bus
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Bus/MsiCommon.cpp
r36079 r36562 32 32 DECLINLINE(bool) msiIs64Bit(PPCIDEVICE pDev) 33 33 { 34 return (msiGetMessageControl(pDev) & VBOX_PCI_MSI_FLAGS_64BIT) != 0;34 return pciDevIsMsi64Capable(pDev); 35 35 } 36 36 -
trunk/src/VBox/Devices/Bus/PCIInternal.h
r36138 r36562 88 88 PCIDEV_FLAG_MSIX_CAPABLE = 1<<4, 89 89 /** Flag if device represents real physical device in passthrough mode. */ 90 PCIDEV_FLAG_PASSTHROUGH = 1<<5 90 PCIDEV_FLAG_PASSTHROUGH = 1<<5, 91 /** Flag whether the device is capable of MSI using 64-bit address. */ 92 PCIDEV_FLAG_MSI64_CAPABLE = 1<<6 93 91 94 }; 92 95
Note:
See TracChangeset
for help on using the changeset viewer.