Changeset 68423 in vbox for trunk/include/VBox/vmm
- Timestamp:
- Aug 15, 2017 11:28:57 PM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 117565
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/pdmpcidevint.h
r66645 r68423 203 203 * @todo fix non-standard naming. */ 204 204 uint8_t u8MsixCapSize; 205 #if HC_ARCH_BITS == 64 206 /** Explicit alignment padding. */207 uint8_t abPadding1[HC_ARCH_BITS == 32 ? 0 : 4];208 #endif 205 /** Size of the MSI-X region. */ 206 uint16_t cbMsixRegion; 207 /** Offset to the PBA for MSI-X. */ 208 uint16_t offMsixPba; 209 209 210 210 /** Pointer to bus specific data. (R3 ptr) */ … … 216 216 } PDMPCIDEVINT; 217 217 AssertCompileMemberAlignment(PDMPCIDEVINT, aIORegions, 8); 218 AssertCompileSize(PDMPCIDEVINT, HC_ARCH_BITS == 32 ? 26 4: 384);218 AssertCompileSize(PDMPCIDEVINT, HC_ARCH_BITS == 32 ? 268 : 384); 219 219 220 220 /** Indicate that PDMPCIDEV::Int.s can be declared. */
Note:
See TracChangeset
for help on using the changeset viewer.