Changeset 32825 in vbox
- Timestamp:
- Sep 29, 2010 5:00:22 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/PC/DevACPI.cpp
r32765 r32825 534 534 535 535 /** MCFG Descriptor Structure */ 536 struct ACPITBLMCFG536 typedef struct ACPITBLMCFG 537 537 { 538 538 ACPITBLHEADER aHeader; 539 539 uint64_t u64Reserved; 540 } ;540 } ACPITBLMCFG; 541 541 AssertCompileSize(ACPITBLMCFG, 44); 542 542 543 /* Number of such entries can be computed from the whole table length in header */544 struct ACPITBLMCFGENTRY543 /** Number of such entries can be computed from the whole table length in header */ 544 typedef struct ACPITBLMCFGENTRY 545 545 { 546 546 uint64_t u64BaseAddress; … … 549 549 uint8_t u8EndBus; 550 550 uint32_t u32Reserved; 551 } ;551 } ACPITBLMCFGENTRY; 552 552 AssertCompileSize(ACPITBLMCFGENTRY, 16); 553 553
Note:
See TracChangeset
for help on using the changeset viewer.