Changeset 67585 in vbox for trunk/src/VBox/Devices/PC/DevACPI.cpp
- Timestamp:
- Jun 23, 2017 3:29:50 PM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 116341
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/PC/DevACPI.cpp
r67456 r67585 3151 3151 u64PciPref64Min, pThis->u64PciPref64Max-1)); 3152 3152 } 3153 if (cbBelow4GB > UINT32_C(0xf fe00000)) /* See MEM3. */3153 if (cbBelow4GB > UINT32_C(0xfe000000)) /* See MEM3. */ 3154 3154 { 3155 3155 /* Note: This is also enforced by DevPcBios.cpp. */ 3156 LogRel(("ACPI: Clipping cbRamLow=%#RX64 down to 0xf fe00000.\n", cbBelow4GB));3157 cbBelow4GB = UINT32_C(0xf fe00000);3156 LogRel(("ACPI: Clipping cbRamLow=%#RX64 down to 0xfe000000.\n", cbBelow4GB)); 3157 cbBelow4GB = UINT32_C(0xfe000000); 3158 3158 } 3159 3159 pThis->cbRamLow = cbBelow4GB;
Note:
See TracChangeset
for help on using the changeset viewer.