Changeset 32779 in vbox for trunk/src/VBox/Devices/Bus
- Timestamp:
- Sep 27, 2010 4:24:11 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Bus/PCIInternal.h
r32776 r32779 81 81 /** Flag whether the device is a PCI Express device. 82 82 * This is set prior to device registration. */ 83 PCIDEV_FLAG_PCI_EXPRESS_DEVICE = 1<<2 83 PCIDEV_FLAG_PCI_EXPRESS_DEVICE = 1<<2, 84 /** Flag whether the device is capable of MSI. 85 * This is set prior to device registration. */ 86 PCIDEV_FLAG_PCI_MSI = 1<<3, 87 /** Flag whether the device is capable of MSI-X. 88 * This is set prior to device registration. */ 89 PCIDEV_FLAG_PCI_MSIX = 1<<4 90 84 91 }; 85 92
Note:
See TracChangeset
for help on using the changeset viewer.